File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
mylyn.tasks/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 2727@ Deprecated
2828public class DefaultTaskMapping extends TaskMapping {
2929
30+ @ Deprecated
3031 public Map <String , String > values = new HashMap <>();
3132
33+ @ Deprecated
3234 @ Override
3335 public String getDescription () {
3436 return values .get (TaskAttribute .DESCRIPTION );
3537 }
3638
39+ @ Deprecated
3740 @ Override
3841 public String getSummary () {
3942 return values .get (TaskAttribute .SUMMARY );
4043 }
4144
45+ @ Deprecated
4246 public void setDescription (String value ) {
4347 values .put (TaskAttribute .DESCRIPTION , value );
4448 }
4549
50+ @ Deprecated
4651 public void setSummary (String value ) {
4752 values .put (TaskAttribute .SUMMARY , value );
4853 }
Original file line number Diff line number Diff line change 2424@ Deprecated
2525public abstract class AbstractTaskListMigrator {
2626
27+ @ Deprecated
2728 public static final String KEY_QUERY = "Query" ; //$NON-NLS-1$
2829
30+ @ Deprecated
2931 public static final String KEY_TASK = "Task" ; //$NON-NLS-1$
3032
33+ @ Deprecated
3134 public static final String KEY_LAST_MOD_DATE = "LastModified" ; //$NON-NLS-1$
3235
36+ @ Deprecated
3337 public abstract String getTaskElementName ();
3438
39+ @ Deprecated
3540 public abstract Set <String > getQueryElementNames ();
3641
42+ @ Deprecated
3743 public abstract void migrateQuery (IRepositoryQuery query , Element element );
3844
45+ @ Deprecated
3946 public abstract void migrateTask (ITask task , Element element );
4047
48+ @ Deprecated
4149 public abstract String getConnectorKind ();
4250
4351}
You can’t perform that action at this time.
0 commit comments