2016.7.4
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 1.0 KiB |
|
@ -0,0 +1,2 @@
|
|||
background=#ffffff
|
||||
foreground=#000000
|
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 874 B |
|
@ -0,0 +1,2 @@
|
|||
background=#000000
|
||||
foreground=#ffffff
|
After Width: | Height: | Size: 727 B |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 1.0 KiB |
|
@ -0,0 +1,2 @@
|
|||
background=#ffffff
|
||||
foreground=#000000
|
|
@ -0,0 +1,35 @@
|
|||
*** SESSION 5月 15, 2016 09:13:42.97 --------------------------------------------
|
||||
*** SESSION 5月 15, 2016 09:20:33.31 --------------------------------------------
|
||||
*** SESSION 5月 15, 2016 09:22:04.34 --------------------------------------------
|
||||
*** SESSION 5月 15, 2016 09:51:04.91 --------------------------------------------
|
||||
*** SESSION 5月 18, 2016 09:41:46.06 --------------------------------------------
|
||||
*** SESSION 6月 08, 2016 11:24:21.88 --------------------------------------------
|
||||
*** SESSION 6月 08, 2016 11:44:57.81 --------------------------------------------
|
||||
*** SESSION 6月 16, 2016 16:06:09.82 --------------------------------------------
|
||||
*** SESSION 6月 20, 2016 19:06:36.98 --------------------------------------------
|
||||
*** SESSION 6月 20, 2016 22:59:14.51 --------------------------------------------
|
||||
*** SESSION 6月 21, 2016 00:48:22.64 --------------------------------------------
|
||||
*** SESSION 6月 21, 2016 00:53:12.21 --------------------------------------------
|
||||
*** SESSION 6月 21, 2016 01:00:38.77 --------------------------------------------
|
||||
*** SESSION 6月 21, 2016 01:06:46.07 --------------------------------------------
|
||||
*** SESSION 6月 21, 2016 01:19:21.87 --------------------------------------------
|
||||
*** SESSION 6月 21, 2016 20:38:34.52 --------------------------------------------
|
||||
*** SESSION 6月 21, 2016 21:07:29.99 --------------------------------------------
|
||||
*** SESSION 6月 21, 2016 23:23:17.66 --------------------------------------------
|
||||
*** SESSION 6月 22, 2016 11:41:29.82 --------------------------------------------
|
||||
*** SESSION 6月 22, 2016 23:14:57.36 --------------------------------------------
|
||||
*** SESSION 6月 23, 2016 15:35:19.07 --------------------------------------------
|
||||
*** SESSION 6月 23, 2016 23:30:33.92 --------------------------------------------
|
||||
*** SESSION 6月 25, 2016 10:23:01.50 --------------------------------------------
|
||||
*** SESSION 6月 25, 2016 15:03:20.65 --------------------------------------------
|
||||
*** SESSION 6月 25, 2016 16:57:34.43 --------------------------------------------
|
||||
*** SESSION 6月 25, 2016 23:17:15.15 --------------------------------------------
|
||||
*** SESSION 6月 25, 2016 23:54:48.18 --------------------------------------------
|
||||
*** SESSION 6月 25, 2016 23:58:00.54 --------------------------------------------
|
||||
*** SESSION 6月 26, 2016 00:05:42.28 --------------------------------------------
|
||||
*** SESSION 6月 26, 2016 00:10:39.87 --------------------------------------------
|
||||
*** SESSION 7月 01, 2016 22:49:10.96 --------------------------------------------
|
||||
*** SESSION 7月 02, 2016 00:10:53.99 --------------------------------------------
|
||||
*** SESSION 7月 02, 2016 08:51:43.14 --------------------------------------------
|
||||
*** SESSION 7月 04, 2016 15:52:02.68 --------------------------------------------
|
||||
*** SESSION 7月 04, 2016 17:58:21.26 --------------------------------------------
|
|
@ -0,0 +1 @@
|
|||
|
|
@ -0,0 +1 @@
|
|||
|
|
@ -0,0 +1,114 @@
|
|||
package com.stone.shop.adapter;
|
||||
|
||||
import android.R.integer;
|
||||
import android.content.Context;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.BaseAdapter;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
import com.stone.date.TypeDef;
|
||||
import com.stone.shop.R;
|
||||
|
||||
/**
|
||||
* 生活-- 网格布局(ImageView+TextView)适配器
|
||||
*
|
||||
* @date 2014-4-24
|
||||
* @author Stone
|
||||
*/
|
||||
public class GridAdapter extends BaseAdapter {
|
||||
|
||||
private Context mContext;
|
||||
private int mIndex = 0; // 代表当前需要适配页面中第几个GridView
|
||||
|
||||
//学习小菜
|
||||
public static String[] mSchoolTexts = TypeDef.typeSonList1;
|
||||
private int[] mSchoolImages = { R.drawable.ic_8, R.drawable.ic_8 };
|
||||
|
||||
//吃饭小菜
|
||||
public static String[] mFoodTexts = TypeDef.typeSonList2;
|
||||
private int[] mFoodImages = { R.drawable.ic_41, R.drawable.ic_42};
|
||||
|
||||
//购物小菜
|
||||
public static String[] mGiftTexts = TypeDef.typeSonList3;
|
||||
private int[] mGiftImages = { R.drawable.ic_7, R.drawable.ic_7,
|
||||
R.drawable.ic_7, R.drawable.ic_7, R.drawable.ic_7,
|
||||
R.drawable.ic_7, R.drawable.ic_7};
|
||||
|
||||
//疯狂小菜
|
||||
public static String[] mOutTexts = TypeDef.typeSonList4;
|
||||
private int[] mOutImages = { R.drawable.ic_3, R.drawable.ic_3,
|
||||
R.drawable.ic_3, R.drawable.ic_3, R.drawable.ic_3,
|
||||
R.drawable.ic_3, R.drawable.ic_3 };
|
||||
|
||||
public GridAdapter(Context context, int index) {
|
||||
mContext = context;
|
||||
mIndex = index;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getCount() {
|
||||
int count = 0;
|
||||
switch (mIndex) {
|
||||
case 0:
|
||||
count = mFoodImages.length;
|
||||
break;
|
||||
case 1:
|
||||
count = mGiftImages.length;
|
||||
break;
|
||||
case 2:
|
||||
count = mOutImages.length;
|
||||
break;
|
||||
case 3:
|
||||
count = mSchoolImages.length;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return count;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object getItem(int position) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public long getItemId(int position) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public View getView(int position, View convertView, ViewGroup parent) {
|
||||
View view = View.inflate(mContext, R.layout.shop_grid_item, null);
|
||||
// RelativeLayout rl = (RelativeLayout)
|
||||
// view.findViewById(R.id.relaGrid);
|
||||
|
||||
ImageView image = (ImageView) view.findViewById(R.id.img_chooseImage);
|
||||
TextView text = (TextView) view.findViewById(R.id.tv_chooseText);
|
||||
switch (mIndex) {
|
||||
case 0:
|
||||
image.setImageResource(mFoodImages[position]);
|
||||
text.setText(mFoodTexts[position]);
|
||||
break;
|
||||
case 1:
|
||||
image.setImageResource(mGiftImages[position]);
|
||||
text.setText(mGiftTexts[position]);
|
||||
break;
|
||||
case 2:
|
||||
image.setImageResource(mOutImages[position]);
|
||||
text.setText(mOutTexts[position]);
|
||||
break;
|
||||
case 3:
|
||||
image.setImageResource(mSchoolImages[position]);
|
||||
text.setText(mSchoolTexts[position]);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return view;
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,123 @@
|
|||
package com.stone.shop.view;
|
||||
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import com.stone.shop.R;
|
||||
import com.stone.shop.model.Reservation;
|
||||
import com.stone.shop.model.User;
|
||||
import com.stone.ui.DateTimePickDialogUtil;
|
||||
import com.stone.ui.DateTimePickDialogUtil.DateTimeListener;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
import android.text.TextUtils;
|
||||
import android.view.View;
|
||||
import android.view.View.OnClickListener;
|
||||
import android.widget.Button;
|
||||
import android.widget.TextView;
|
||||
import android.widget.Toast;
|
||||
import cn.bmob.v3.BmobQuery;
|
||||
import cn.bmob.v3.listener.FindListener;
|
||||
import cn.bmob.v3.listener.SaveListener;
|
||||
|
||||
public class ReservationActivity extends Activity {
|
||||
|
||||
private Button btn_login;
|
||||
private SimpleDateFormat dateFormat;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.layout_reservation);
|
||||
|
||||
TextView tv_title = (TextView) findViewById(R.id.tv_title);
|
||||
tv_title.setText("教室预定");
|
||||
|
||||
final String roomId = getIntent().getStringExtra("roomId");
|
||||
final String roomName = getIntent().getStringExtra("roomName");
|
||||
|
||||
TextView tv_room = (TextView) findViewById(R.id.tv_room);
|
||||
tv_room.setText("教室:" + roomName);
|
||||
|
||||
btn_login = (Button) findViewById(R.id.btn_login);
|
||||
|
||||
dateFormat = new SimpleDateFormat("yyyy年MM月dd日 HH:mm");
|
||||
|
||||
// 查找Person表里面id为6b6c11c537的数据
|
||||
BmobQuery<Reservation> bmobQuery = new BmobQuery<Reservation>();
|
||||
bmobQuery.addWhereEqualTo("userId", User.userId);
|
||||
bmobQuery.addWhereEqualTo("roomId", roomId);
|
||||
bmobQuery.findObjects(ReservationActivity.this, new FindListener<Reservation>() {
|
||||
|
||||
@Override
|
||||
public void onSuccess(List<Reservation> newsList) {
|
||||
// toast("查询商品成功, 共" + newsList.size());
|
||||
if (newsList.size() != 0) {
|
||||
|
||||
String dateTime = newsList.get(0).getDateTime();
|
||||
|
||||
btn_login.setEnabled(false);
|
||||
btn_login.setText("已经预定" + (TextUtils.isEmpty(dateTime) ? "" : (" " + dateTime)));
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onError(int arg0, String arg1) {
|
||||
toast("查询失败");
|
||||
}
|
||||
});
|
||||
|
||||
btn_login.setOnClickListener(new OnClickListener() {
|
||||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
DateTimePickDialogUtil dateTimePicKDialog = new DateTimePickDialogUtil(ReservationActivity.this,
|
||||
dateFormat.format(new Date(System.currentTimeMillis() + 3600 * 1000 * 2)));
|
||||
dateTimePicKDialog.dateTimePicKDialog(new DateTimeListener() {
|
||||
|
||||
@Override
|
||||
public void onDateTimeChane(final String dateTime) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
Reservation reservation = new Reservation();
|
||||
reservation.setRoomId(roomId);
|
||||
reservation.setRoomName(roomName);
|
||||
reservation.setUserId(User.userId);
|
||||
reservation.setDateTime(dateTime);
|
||||
|
||||
reservation.save(ReservationActivity.this, new SaveListener() {
|
||||
|
||||
@Override
|
||||
public void onSuccess() {
|
||||
// TODO Auto-generated method stub
|
||||
toast("预定成功");
|
||||
btn_login.setEnabled(false);
|
||||
btn_login.setText("已经预定 "+ dateTime);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onFailure(int arg0, String arg1) {
|
||||
// TODO Auto-generated method stub
|
||||
toast("预定失败");
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
private void toast(String toast) {
|
||||
Toast.makeText(this, toast, Toast.LENGTH_SHORT).show();
|
||||
}
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
|
|
@ -0,0 +1 @@
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
com.android.ide.eclipse.adt.fixLegacyEditors=1
|
||||
com.android.ide.eclipse.adt.previews=custom
|
||||
com.android.ide.eclipse.adt.sdk=D\:\\\u5B66\u4E60\\\u5927\u4E09\u4E0B\\adt-bundle-windows-x86_64-20140702\\sdk
|
||||
design.palette.flyout.dockLocation=4
|
||||
design.palette.flyout.state=1
|
||||
eclipse.preferences.version=1
|
|
@ -0,0 +1,13 @@
|
|||
ddms.logcat.auotmonitor.level=error
|
||||
ddms.logcat.automonitor.userprompt=true
|
||||
devicePanel.Col0=125
|
||||
devicePanel.Col1=53
|
||||
devicePanel.Col4=76
|
||||
eclipse.preferences.version=1
|
||||
logcat.view.colsize.Application=156
|
||||
logcat.view.colsize.Level=30
|
||||
logcat.view.colsize.PID=58
|
||||
logcat.view.colsize.TID=58
|
||||
logcat.view.colsize.Tag=119
|
||||
logcat.view.colsize.Text=613
|
||||
logcat.view.colsize.Time=150
|
|
@ -0,0 +1,2 @@
|
|||
eclipse.preferences.version=1
|
||||
org.eclipse.cdt.debug.core.cDebug.default_source_containers=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<sourceLookupDirector>\r\n<sourceContainers duplicates\="false">\r\n<container memento\="AbsolutePath" typeId\="org.eclipse.cdt.debug.core.containerType.absolutePath"/>\r\n<container memento\="programRelativePath" typeId\="org.eclipse.cdt.debug.core.containerType.programRelativePath"/>\r\n<container memento\="<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>&\#13;&\#10;<project referencedProjects\="true"/>&\#13;&\#10;" typeId\="org.eclipse.cdt.debug.core.containerType.project"/>\r\n</sourceContainers>\r\n</sourceLookupDirector>\r\n
|
|
@ -0,0 +1,4 @@
|
|||
eclipse.preferences.version=1
|
||||
spelling_locale_initialized=true
|
||||
useAnnotationsPrefPage=true
|
||||
useQuickDiffPrefPage=true
|
|
@ -0,0 +1,2 @@
|
|||
eclipse.preferences.version=1
|
||||
version=1
|
|
@ -0,0 +1,4 @@
|
|||
//org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.applicationLaunchType=org.eclipse.cdt.dsf.gdb.launch.localCLaunch,debug;org.eclipse.cdt.cdi.launch.localCLaunch,run
|
||||
//org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.attachLaunchType=org.eclipse.cdt.dsf.gdb.launch.attachCLaunch,debug
|
||||
//org.eclipse.debug.core.PREFERRED_DELEGATES/org.eclipse.cdt.launch.postmortemLaunchType=org.eclipse.cdt.dsf.gdb.launch.coreCLaunch,debug
|
||||
eclipse.preferences.version=1
|
|
@ -0,0 +1,3 @@
|
|||
eclipse.preferences.version=1
|
||||
org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<launchPerspectives/>\r\n
|
||||
preferredTargets=org.eclipse.cdt.debug.ui.toggleCBreakpointTarget\:org.eclipse.cdt.debug.ui.toggleCBreakpointTarget|default\:default|default,org.eclipse.cdt.debug.ui.toggleCBreakpointTarget\:default|
|
|
@ -0,0 +1,2 @@
|
|||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled
|
|
@ -0,0 +1,2 @@
|
|||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.launching.PREF_VM_XML=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<vmSettings defaultVM\="57,org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType13,1463274893702" defaultVMConnector\="">\r\n<vmType id\="org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType">\r\n<vm id\="1463274893702" name\="jre1.8.0_66" path\="C\:\\Program Files\\Java\\jre1.8.0_66"/>\r\n</vmType>\r\n</vmSettings>\r\n
|
|
@ -0,0 +1,19 @@
|
|||
content_assist_lru_history=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><history maxLHS\="100" maxRHS\="10"/>
|
||||
content_assist_number_of_computers=12
|
||||
content_assist_proposals_background=255,255,255
|
||||
content_assist_proposals_foreground=0,0,0
|
||||
eclipse.preferences.version=1
|
||||
fontPropagated=true
|
||||
org.eclipse.jdt.ui.editor.tab.width=
|
||||
org.eclipse.jdt.ui.formatterprofiles.version=12
|
||||
org.eclipse.jdt.ui.javadoclocations.migrated=true
|
||||
org.eclipse.jdt.ui.text.code_templates_migrated=true
|
||||
org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/>
|
||||
org.eclipse.jdt.ui.text.custom_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/>
|
||||
org.eclipse.jdt.ui.text.templates_migrated=true
|
||||
org.eclipse.jface.textfont=1|Consolas|10.0|0|WINDOWS|1|0|0|0|0|0|0|0|0|1|0|0|0|0|Consolas;
|
||||
proposalOrderMigrated=true
|
||||
spelling_locale_initialized=true
|
||||
tabWidthPropagated=true
|
||||
useAnnotationsPrefPage=true
|
||||
useQuickDiffPrefPage=true
|
|
@ -0,0 +1,2 @@
|
|||
eclipse.preferences.version=1
|
||||
org.eclipse.search.defaultPerspective=org.eclipse.search.defaultPerspective.none
|
|
@ -0,0 +1,2 @@
|
|||
eclipse.preferences.version=1
|
||||
org.eclipse.team.ui.first_time=false
|
|
@ -0,0 +1,2 @@
|
|||
eclipse.preferences.version=1
|
||||
overviewRuler_migration=migrated_3.1
|
|
@ -0,0 +1,5 @@
|
|||
PROBLEMS_FILTERS_MIGRATE=true
|
||||
eclipse.preferences.version=1
|
||||
platformState=1466442362740
|
||||
quickStart=false
|
||||
tipsAndTricks=true
|
|
@ -0,0 +1,2 @@
|
|||
HeapStatus.showMax=true
|
||||
eclipse.preferences.version=1
|
|
@ -0,0 +1,2 @@
|
|||
eclipse.preferences.version=1
|
||||
task-tag-projects-already-scanned=SplashActivity,Shop,QQLoginSample
|
|
@ -0,0 +1,4 @@
|
|||
content_assist_number_of_computers=2
|
||||
eclipse.preferences.version=1
|
||||
useAnnotationsPrefPage=true
|
||||
useQuickDiffPrefPage=true
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.android.ide.eclipse.adt.debug.LaunchConfigType">
|
||||
<intAttribute key="com.android.ide.eclipse.adt.action" value="0"/>
|
||||
<stringAttribute key="com.android.ide.eclipse.adt.commandline" value=""/>
|
||||
<intAttribute key="com.android.ide.eclipse.adt.delay" value="0"/>
|
||||
<booleanAttribute key="com.android.ide.eclipse.adt.nobootanim" value="false"/>
|
||||
<intAttribute key="com.android.ide.eclipse.adt.speed" value="0"/>
|
||||
<stringAttribute key="com.android.ide.eclipse.adt.target" value="AUTO"/>
|
||||
<booleanAttribute key="com.android.ide.eclipse.adt.wipedata" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/MyGuideView04"/>
|
||||
<listEntry value="/MyGuideView04/AndroidManifest.xml"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
<listEntry value="1"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="MyGuideView04"/>
|
||||
</launchConfiguration>
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.android.ide.eclipse.adt.debug.LaunchConfigType">
|
||||
<intAttribute key="com.android.ide.eclipse.adt.action" value="0"/>
|
||||
<stringAttribute key="com.android.ide.eclipse.adt.commandline" value=""/>
|
||||
<intAttribute key="com.android.ide.eclipse.adt.delay" value="0"/>
|
||||
<booleanAttribute key="com.android.ide.eclipse.adt.nobootanim" value="false"/>
|
||||
<intAttribute key="com.android.ide.eclipse.adt.speed" value="0"/>
|
||||
<stringAttribute key="com.android.ide.eclipse.adt.target" value="AUTO"/>
|
||||
<booleanAttribute key="com.android.ide.eclipse.adt.wipedata" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/QQLoginSample"/>
|
||||
<listEntry value="/QQLoginSample/AndroidManifest.xml"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
<listEntry value="1"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="QQLoginSample"/>
|
||||
</launchConfiguration>
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.android.ide.eclipse.adt.debug.LaunchConfigType">
|
||||
<intAttribute key="com.android.ide.eclipse.adt.action" value="0"/>
|
||||
<stringAttribute key="com.android.ide.eclipse.adt.commandline" value=""/>
|
||||
<intAttribute key="com.android.ide.eclipse.adt.delay" value="0"/>
|
||||
<booleanAttribute key="com.android.ide.eclipse.adt.nobootanim" value="false"/>
|
||||
<intAttribute key="com.android.ide.eclipse.adt.speed" value="0"/>
|
||||
<stringAttribute key="com.android.ide.eclipse.adt.target" value="AUTO"/>
|
||||
<booleanAttribute key="com.android.ide.eclipse.adt.wipedata" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/Shop"/>
|
||||
<listEntry value="/Shop/AndroidManifest.xml"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
<listEntry value="1"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="Shop"/>
|
||||
</launchConfiguration>
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.android.ide.eclipse.adt.debug.LaunchConfigType">
|
||||
<intAttribute key="com.android.ide.eclipse.adt.action" value="0"/>
|
||||
<stringAttribute key="com.android.ide.eclipse.adt.commandline" value=""/>
|
||||
<intAttribute key="com.android.ide.eclipse.adt.delay" value="0"/>
|
||||
<booleanAttribute key="com.android.ide.eclipse.adt.nobootanim" value="false"/>
|
||||
<intAttribute key="com.android.ide.eclipse.adt.speed" value="0"/>
|
||||
<stringAttribute key="com.android.ide.eclipse.adt.target" value="AUTO"/>
|
||||
<booleanAttribute key="com.android.ide.eclipse.adt.wipedata" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/SplashActivity"/>
|
||||
<listEntry value="/SplashActivity/AndroidManifest.xml"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
<listEntry value="1"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="SplashActivity"/>
|
||||
</launchConfiguration>
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchHistory>
|
||||
<launchGroup id="org.eclipse.debug.ui.launchGroup.debug">
|
||||
<mruHistory>
|
||||
<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="Shop"/> "/>
|
||||
</mruHistory>
|
||||
<favorites/>
|
||||
</launchGroup>
|
||||
<launchGroup id="org.eclipse.debug.ui.launchGroup.profile">
|
||||
<mruHistory/>
|
||||
<favorites/>
|
||||
</launchGroup>
|
||||
<launchGroup id="org.eclipse.ui.externaltools.launchGroup">
|
||||
<mruHistory/>
|
||||
<favorites/>
|
||||
</launchGroup>
|
||||
<launchGroup id="org.eclipse.debug.ui.launchGroup.run">
|
||||
<mruHistory>
|
||||
<launch memento="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration local="true" path="Shop"/> "/>
|
||||
</mruHistory>
|
||||
<favorites/>
|
||||
</launchGroup>
|
||||
</launchHistory>
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<section name="Workbench">
|
||||
<section name="org.eclipse.equinox.internal.p2.ui.dialogs.InstallWizard.WizardSettings">
|
||||
<item value="737" key="DIALOG_WIDTH"/>
|
||||
<item value="1|微软雅黑|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|微软雅黑" key="DIALOG_FONT_NAME"/>
|
||||
<item value="728" key="DIALOG_HEIGHT"/>
|
||||
<item value="323" key="DIALOG_X_ORIGIN"/>
|
||||
<item value="8" key="DIALOG_Y_ORIGIN"/>
|
||||
</section>
|
||||
</section>
|
|
@ -0,0 +1 @@
|
|||
INDEX VERSION 1.126
|
|
@ -0,0 +1 @@
|
|||
java
|
|
@ -0,0 +1,8 @@
|
|||
INDEX VERSION 1.126+C:\Users\kaka727\Desktop\Group4Project\´úÂë\.metadata\.plugins\org.eclipse.jdt.core
|
||||
3690134431.index
|
||||
383641943.index
|
||||
4274425093.index
|
||||
2771060146.index
|
||||
1583082874.index
|
||||
1721429585.index
|
||||
73220715.index
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<dirs>
|
||||
<entry loc="C:\Program Files\Java\jre1.8.0_66" stamp="1450139112575"/>
|
||||
</dirs>
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<libraryInfos>
|
||||
<libraryInfo home="C:\Program Files\Java\jre1.8.0_66" version="1.8.0_66">
|
||||
<bootpath>
|
||||
<entry path="C:\Program Files\Java\jre1.8.0_66\lib\resources.jar"/>
|
||||
<entry path="C:\Program Files\Java\jre1.8.0_66\lib\rt.jar"/>
|
||||
<entry path="C:\Program Files\Java\jre1.8.0_66\lib\sunrsasign.jar"/>
|
||||
<entry path="C:\Program Files\Java\jre1.8.0_66\lib\jsse.jar"/>
|
||||
<entry path="C:\Program Files\Java\jre1.8.0_66\lib\jce.jar"/>
|
||||
<entry path="C:\Program Files\Java\jre1.8.0_66\lib\charsets.jar"/>
|
||||
<entry path="C:\Program Files\Java\jre1.8.0_66\lib\jfr.jar"/>
|
||||
<entry path="C:\Program Files\Java\jre1.8.0_66\classes"/>
|
||||
</bootpath>
|
||||
<extensionDirs>
|
||||
<entry path="C:\Program Files\Java\jre1.8.0_66\lib\ext"/>
|
||||
<entry path="C:\Windows\Sun\Java\lib\ext"/>
|
||||
</extensionDirs>
|
||||
<endorsedDirs>
|
||||
<entry path="C:\Program Files\Java\jre1.8.0_66\lib\endorsed"/>
|
||||
</endorsedDirs>
|
||||
</libraryInfo>
|
||||
</libraryInfos>
|
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<typeInfoHistroy/>
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<qualifiedTypeNameHistroy>
|
||||
<fullyQualifiedTypeName name="headfirst.designpatterns.adapter.ducks.Turkey"/>
|
||||
<fullyQualifiedTypeName name="android.util.Log"/>
|
||||
<fullyQualifiedTypeName name="com.stone.shop.adapter.ViewPagerAdapter2"/>
|
||||
<fullyQualifiedTypeName name="com.stone.shop.R.id"/>
|
||||
<fullyQualifiedTypeName name="com.stone.shop.R"/>
|
||||
</qualifiedTypeNameHistroy>
|
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<section name="Workbench">
|
||||
<item value="filter_imports;" key="filters_last_used"/>
|
||||
<section name="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart">
|
||||
<item value="2" key="layout"/>
|
||||
<item value="true" key="group_libraries"/>
|
||||
<item value="<?xml version="1.0" encoding="UTF-8"?>
<packageExplorer group_libraries="1" layout="2" linkWithEditor="0" rootMode="1" workingSetName="">
<customFilters userDefinedPatternsEnabled="false">
<xmlDefinedFilters>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.StaticsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.FieldsFilter" isEnabled="false"/>
</xmlDefinedFilters>
</customFilters>
</packageExplorer>" key="memento"/>
|
||||
<item value="1" key="rootMode"/>
|
||||
<item value="false" key="linkWithEditor"/>
|
||||
</section>
|
||||
<section name="NewClassWizardPage">
|
||||
<item value="false" key="create_constructor"/>
|
||||
<item value="false" key="create_main"/>
|
||||
<item value="true" key="create_unimplemented"/>
|
||||
</section>
|
||||
<section name="OptionalMessageDialog.hide.">
|
||||
<item value="true" key="org.eclipse.jdt.ui.typecomment.deprecated"/>
|
||||
</section>
|
||||
<section name="quick_assist_proposal_size">
|
||||
</section>
|
||||
<section name="JavaSearchPage">
|
||||
<item value="3" key="HISTORY_SIZE"/>
|
||||
<item value="false" key="CASE_SENSITIVE"/>
|
||||
<item value="11" key="INCLUDE_MASK"/>
|
||||
<section name="HISTORY2">
|
||||
<item value="false" key="isCaseSensitive"/>
|
||||
<item value="" key="javaElement"/>
|
||||
<item value="0" key="scope"/>
|
||||
<item value="11" key="includeMask"/>
|
||||
<item value="QQ" key="pattern"/>
|
||||
<item value="2" key="limitTo"/>
|
||||
<item value="0" key="matchLocations"/>
|
||||
<item value="0" key="searchFor"/>
|
||||
<list key="workingSets">
|
||||
</list>
|
||||
</section>
|
||||
<section name="HISTORY0">
|
||||
<item value="false" key="isCaseSensitive"/>
|
||||
<item value="" key="javaElement"/>
|
||||
<item value="0" key="scope"/>
|
||||
<item value="11" key="includeMask"/>
|
||||
<item value="3600" key="pattern"/>
|
||||
<item value="2" key="limitTo"/>
|
||||
<item value="0" key="matchLocations"/>
|
||||
<item value="0" key="searchFor"/>
|
||||
<list key="workingSets">
|
||||
</list>
|
||||
</section>
|
||||
<section name="HISTORY1">
|
||||
<item value="false" key="isCaseSensitive"/>
|
||||
<item value="" key="javaElement"/>
|
||||
<item value="0" key="scope"/>
|
||||
<item value="11" key="includeMask"/>
|
||||
<item value="typeSonList2" key="pattern"/>
|
||||
<item value="2" key="limitTo"/>
|
||||
<item value="0" key="matchLocations"/>
|
||||
<item value="4" key="searchFor"/>
|
||||
<list key="workingSets">
|
||||
</list>
|
||||
</section>
|
||||
</section>
|
||||
<section name="BuildPathsPropertyPage">
|
||||
<item value="3" key="pageIndex"/>
|
||||
</section>
|
||||
<section name="completion_proposal_size">
|
||||
</section>
|
||||
<section name="JavaElementSearchActions">
|
||||
</section>
|
||||
</section>
|
|
@ -0,0 +1,3 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<session version="1.0">
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1463275336701"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1463277082037"/>
<refactoring comment="Delete resource '软测'" deleteContents="false" description="Delete resource '软测'" element1="/软测" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1463536093942"/>
<refactoring comment="Delete resource '软测'" deleteContents="false" description="Delete resource '软测'" element1="/软测" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1463536138522"/>
|
||||
</session>
|
|
@ -0,0 +1,4 @@
|
|||
1463275336701 Delete resource 'Shop'
|
||||
1463277082037 Delete resource 'Shop'
|
||||
1463536093942 Delete resource '软测'
|
||||
1463536138522 Delete resource '软测'
|
|
@ -0,0 +1,3 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<session version="1.0">
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466431489913"/>
<refactoring comment="Delete resource 'ruance'" deleteContents="false" description="Delete resource 'ruance'" element1="/ruance" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466431498159"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466441334597"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466514488738"/>
<refactoring comment="Delete resource 'MyGuideView04'" deleteContents="false" description="Delete resource 'MyGuideView04'" element1="/MyGuideView04" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466668548248"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466822085344"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466822442347"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466822612641"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466825512987"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466839734536"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466840396686"/>
<refactoring comment="Delete resource 'SplashActivity'" deleteContents="false" description="Delete resource 'SplashActivity'" element1="/SplashActivity" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466843269359"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466869873009"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466870005914"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466870110249"/>
<refactoring comment="Delete resource 'Shop2'" deleteContents="false" description="Delete resource 'Shop2'" element1="/Shop2" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466870756249"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466871198046"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1466875075372"/>
|
||||
</session>
|
|
@ -0,0 +1,18 @@
|
|||
1466431489913 Delete resource 'Shop'
|
||||
1466431498159 Delete resource 'ruance'
|
||||
1466441334597 Delete resource 'Shop'
|
||||
1466514488738 Delete resource 'Shop'
|
||||
1466668548248 Delete resource 'MyGuideView04'
|
||||
1466822085344 Delete resource 'Shop'
|
||||
1466822442347 Delete resource 'Shop'
|
||||
1466822612641 Delete resource 'Shop'
|
||||
1466825512987 Delete resource 'Shop'
|
||||
1466839734536 Delete resource 'Shop'
|
||||
1466840396686 Delete resource 'Shop'
|
||||
1466843269359 Delete resource 'SplashActivity'
|
||||
1466869873009 Delete resource 'Shop'
|
||||
1466870005914 Delete resource 'Shop'
|
||||
1466870110249 Delete resource 'Shop'
|
||||
1466870756249 Delete resource 'Shop2'
|
||||
1466871198046 Delete resource 'Shop'
|
||||
1466875075372 Delete resource 'Shop'
|
|
@ -0,0 +1,3 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<session version="1.0">
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1467384654905"/>
<refactoring comment="Delete resource 'MyGuideView04'" deleteContents="false" description="Delete resource 'MyGuideView04'" element1="/MyGuideView04" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1467384658475"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1467385175537"/>
|
||||
</session>
|
|
@ -0,0 +1,3 @@
|
|||
1467384654905 Delete resource 'Shop'
|
||||
1467384658475 Delete resource 'MyGuideView04'
|
||||
1467385175537 Delete resource 'Shop'
|
|
@ -0,0 +1,3 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<session version="1.0">
<refactoring comment="Delete resource 'QQLoginSample'" deleteContents="false" description="Delete resource 'QQLoginSample'" element1="/QQLoginSample" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1467618773532"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1467618778472"/>
<refactoring comment="Delete resource 'SplashActivity'" deleteContents="false" description="Delete resource 'SplashActivity'" element1="/SplashActivity" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1467618782832"/>
<refactoring comment="Delete resource 'Shop'" deleteContents="false" description="Delete resource 'Shop'" element1="/Shop" flags="7" id="org.eclipse.ltk.core.refactoring.delete.resources" resources="1" stamp="1467626348947"/>
|
||||
</session>
|
|
@ -0,0 +1,4 @@
|
|||
1467618773532 Delete resource 'QQLoginSample'
|
||||
1467618778472 Delete resource 'Shop'
|
||||
1467618782832 Delete resource 'SplashActivity'
|
||||
1467626348947 Delete resource 'Shop'
|
|
@ -0,0 +1,12 @@
|
|||
1466667408501 Copy compilation units
|
||||
1466667441961 Copy files
|
||||
1466667685099 Copy file
|
||||
1466839176974 Copy compilation units
|
||||
1466839250345 Copy files
|
||||
1466839707262 Copy file
|
||||
1466840365630 Copy file
|
||||
1466871355229 Copy compilation units
|
||||
1466871501300 Copy file
|
||||
1466871528597 Copy file
|
||||
1466871541571 Copy file
|
||||
1466871627765 Copy files
|
|
@ -0,0 +1,3 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<session version="1.0">
<refactoring comment="Copy element 'MainActivity.java' to 'Shop/src/com.stone.shop.view'
- Original project: 'QQLoginSample'
- Destination element: 'Shop/src/com.stone.shop.view'
- Original element: 'com.example.qqloginsample.MainActivity.java'" description="Copy compilation unit" destination="=Shop/src<com.stone.shop.view" element1="/src<com.example.qqloginsample{MainActivity.java" files="0" flags="589830" folders="0" id="org.eclipse.jdt.ui.copy" policy="org.eclipse.jdt.ui.copyResources" stamp="1467422315636" units="1" version="1.0"/>
<refactoring comment="Copy element 'activity_main.xml' to 'layout'
- Original project: 'QQLoginSample'
- Destination element: 'layout'
- Original element: 'activity_main.xml'" description="Copy file" element1="res/layout/activity_main.xml" files="1" flags="589830" folders="0" id="org.eclipse.jdt.ui.copy" policy="org.eclipse.jdt.ui.copyResources" stamp="1467422378087" target="/Shop/res/layout" units="0" version="1.0"/>
<refactoring comment="Copy element 'Util.java' to 'Shop/src/com.stone.shop.model'
- Original project: 'QQLoginSample'
- Destination element: 'Shop/src/com.stone.shop.model'
- Original element: 'com.example.util.Util.java'" description="Copy compilation unit" destination="=Shop/src<com.stone.shop.model" element1="/src<com.example.util{Util.java" files="0" flags="589830" folders="0" id="org.eclipse.jdt.ui.copy" policy="org.eclipse.jdt.ui.copyResources" stamp="1467422445698" units="1" version="1.0"/>
|
||||
</session>
|
|
@ -0,0 +1,3 @@
|
|||
1467422315636 Copy compilation unit
|
||||
1467422378087 Copy file
|
||||
1467422445698 Copy compilation unit
|
|
@ -0,0 +1,22 @@
|
|||
1466526944973 Delete element
|
||||
1466527501854 Delete element
|
||||
1466667848719 Delete element
|
||||
1466822526527 Delete elements
|
||||
1466822794149 Delete element
|
||||
1466822800191 Delete element
|
||||
1466822811162 Delete element
|
||||
1466822816452 Delete element
|
||||
1466822826763 Delete element
|
||||
1466822845702 Delete elements
|
||||
1466822892926 Delete element
|
||||
1466823469463 Delete elements
|
||||
1466823482751 Delete element
|
||||
1466823661868 Delete element
|
||||
1466825734083 Delete element
|
||||
1466842622407 Delete element
|
||||
1466844382165 Delete element
|
||||
1466873905694 Delete element
|
||||
1466874215396 Delete element
|
||||
1466874530569 Delete element
|
||||
1466874590210 Delete element
|
||||
1466874878373 Delete element
|
|
@ -0,0 +1,3 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<session version="1.0">
<refactoring comment="Copy 2 elements to 'Shop/src/com.stone.shop.view'
- Original project: 'SplashActivity'
- Destination element: 'Shop/src/com.stone.shop.view'
- Original elements:
 com.motian.splashactivity.SplashActivity.java
 com.motian.splashactivity.GuideActivity.java" description="Copy compilation units" destination="=Shop/src<com.stone.shop.view" element1="/src<com.motian.splashactivity{SplashActivity.java" element2="/src<com.motian.splashactivity{GuideActivity.java" files="0" flags="589830" folders="0" id="org.eclipse.jdt.ui.copy" policy="org.eclipse.jdt.ui.copyResources" stamp="1466822926738" units="2" version="1.0"/>
<refactoring comment="Copy 4 elements to 'drawable'
- Original project: 'SplashActivity'
- Destination element: 'drawable'
- Original elements:
 guide_button_selector.xml
 guide_point_shape.xml
 guide_textcolor_selector.xml
 move_point_shape.xml" description="Copy files" element1="res/drawable/guide_button_selector.xml" element2="res/drawable/guide_point_shape.xml" element3="res/drawable/guide_textcolor_selector.xml" element4="res/drawable/move_point_shape.xml" files="4" flags="589830" folders="0" id="org.eclipse.jdt.ui.copy" policy="org.eclipse.jdt.ui.copyResources" stamp="1466823105824" target="/Shop/res/drawable" units="0" version="1.0"/>
<refactoring comment="Copy 2 elements to 'layout'
- Original project: 'SplashActivity'
- Destination element: 'layout'
- Original elements:
 activity_guide.xml
 activity_splash.xml" description="Copy files" element1="res/layout/activity_guide.xml" element2="res/layout/activity_splash.xml" files="2" flags="589830" folders="0" id="org.eclipse.jdt.ui.copy" policy="org.eclipse.jdt.ui.copyResources" stamp="1466823129414" target="/Shop/res/layout" units="0" version="1.0"/>
|
||||
</session>
|
|
@ -0,0 +1,3 @@
|
|||
1466822926738 Copy compilation units
|
||||
1466823105824 Copy files
|
||||
1466823129414 Copy files
|
|
@ -0,0 +1,3 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<session version="1.0">
<refactoring comment="Copy element 'SplashActivity.java' to 'Shop/src/com.stone.shop.view'
- Original project: 'SplashActivity'
- Destination element: 'Shop/src/com.stone.shop.view'
- Original element: 'com.motian.splashactivity.SplashActivity.java'" description="Copy compilation unit" destination="=Shop/src<com.stone.shop.view" element1="/src<com.motian.splashactivity{SplashActivity.java" files="0" flags="589830" folders="0" id="org.eclipse.jdt.ui.copy" policy="org.eclipse.jdt.ui.copyResources" stamp="1467384897224" units="1" version="1.0"/>
<refactoring comment="Copy element 'activity_splash.xml' to 'layout'
- Original project: 'SplashActivity'
- Destination element: 'layout'
- Original element: 'activity_splash.xml'" description="Copy file" element1="res/layout/activity_splash.xml" files="1" flags="589830" folders="0" id="org.eclipse.jdt.ui.copy" policy="org.eclipse.jdt.ui.copyResources" stamp="1467384930484" target="/Shop/res/layout" units="0" version="1.0"/>
|
||||
</session>
|
|
@ -0,0 +1,2 @@
|
|||
1467384897224 Copy compilation unit
|
||||
1467384930484 Copy file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<session version="1.0">
|
||||
<refactoring accessors="true" comment="Delete element from project '软测'
- Original project: '软测'
- Original element: '软测/src'" description="Delete element" element1="/src" elements="1" flags="589830" id="org.eclipse.jdt.ui.delete" resources="0" stamp="1463536131462" subPackages="false" version="1.0"/>
|
||||
</session>
|