353 changes: 352 additions & 1 deletion org.eclipse.mylyn.modeling.emf/.settings/org.eclipse.jdt.core.prefs

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions org.eclipse.mylyn.modeling.emf/build.properties
Expand Up @@ -2,5 +2,7 @@ source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
plugin.properties
jre.compilation.profile = JavaSE-1.6
plugin.properties,\
about.html
jre.compilation.profile = J2SE-1.5
src.includes = about.html
Expand Up @@ -29,6 +29,7 @@
*/
public abstract class EMFStructureBridge extends DomainDelegatedStructureBridge {

@Override
public String getDomainHandleIdentifier(Object object) {
EObject eobject = ((EObject) object);
URI uri = EcoreUtil.getURI(eobject);
Expand Down Expand Up @@ -103,4 +104,5 @@ public String getParentHandle(String handle) {
//Resources don't have parents, unless we want to get the file hierarchy, which probably isn't what we want.
return null;
}

}
@@ -1,4 +1,4 @@
#Thu Aug 18 13:33:38 PDT 2011
#Sun May 29 17:20:20 CEST 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.codeComplete.argumentPrefixes=
org.eclipse.jdt.core.codeComplete.argumentSuffixes=
Expand All @@ -8,6 +8,8 @@ org.eclipse.jdt.core.codeComplete.localPrefixes=
org.eclipse.jdt.core.codeComplete.localSuffixes=
org.eclipse.jdt.core.codeComplete.staticFieldPrefixes=
org.eclipse.jdt.core.codeComplete.staticFieldSuffixes=
org.eclipse.jdt.core.codeComplete.staticFinalFieldPrefixes=
org.eclipse.jdt.core.codeComplete.staticFinalFieldSuffixes=
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
Expand Down Expand Up @@ -160,8 +162,10 @@ org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false
org.eclipse.jdt.core.formatter.indentation.size=4
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_member=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=insert
Expand Down

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion org.eclipse.mylyn.modeling.gmf/build.properties
Expand Up @@ -3,4 +3,7 @@ output.. = bin/
bin.includes = META-INF/,\
.,\
plugin.xml,\
plugin.properties
plugin.properties,\
about.html
src.includes = about.html
jre.compilation.profile = J2SE-1.5
Expand Up @@ -137,4 +137,5 @@ public IFigure getDecoratedFigure() {
public List<IRevealableFigure> getDecorationFigures() {
return decorationFigures;
}

}
Expand Up @@ -187,4 +187,5 @@ public boolean isLandmark() {
// Edges can never be landmarked
return false;
}

}
Expand Up @@ -27,4 +27,5 @@ public Object getDomainObject(Object object) {
}
return super.getDomainObject(object);
}

}
Expand Up @@ -64,4 +64,5 @@ public void stop(BundleContext context) throws Exception {
public static GMFUIBridgePlugin getDefault() {
return INSTANCE;
}

}
Expand Up @@ -53,4 +53,5 @@ public boolean isInteresting() {
public boolean isLandmark() {
return getProvider().isLandmark(domainObject);
}

}
Expand Up @@ -125,4 +125,5 @@ public void mouseMove(MouseEvent e) {
public void removeDecoration(IFigure decoration) {
lastDecorations.remove(decoration);
}

}
Expand Up @@ -52,4 +52,5 @@ void hide() {
((Shape) figure).setAlpha(255);
}
}

}
Expand Up @@ -111,4 +111,5 @@ public Color getColor(Color color1, Color color2, float distance) {
}
return create(new RGB(hsb[0], hsb[1], hsb[2]));
}

}
Expand Up @@ -75,4 +75,5 @@ public void unreveal() {
public void restore() {
//noop, landmarks are never hidden
}

}
Expand Up @@ -66,4 +66,5 @@ public void relocate(IFigure target) {
((IFigure) target.getChildren().get(0)).setBounds(decorated.getBounds().getCopy());
}
}

}
@@ -1,4 +1,4 @@
#Thu Aug 18 13:36:03 PDT 2011
#Sun May 29 17:20:20 CEST 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.codeComplete.argumentPrefixes=
org.eclipse.jdt.core.codeComplete.argumentSuffixes=
Expand All @@ -8,6 +8,8 @@ org.eclipse.jdt.core.codeComplete.localPrefixes=
org.eclipse.jdt.core.codeComplete.localSuffixes=
org.eclipse.jdt.core.codeComplete.staticFieldPrefixes=
org.eclipse.jdt.core.codeComplete.staticFieldSuffixes=
org.eclipse.jdt.core.codeComplete.staticFinalFieldPrefixes=
org.eclipse.jdt.core.codeComplete.staticFinalFieldSuffixes=
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
Expand Down Expand Up @@ -160,8 +162,10 @@ org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true
org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false
org.eclipse.jdt.core.formatter.indentation.size=4
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_member=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert
org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=insert
Expand Down

Large diffs are not rendered by default.

@@ -1,4 +1,4 @@
#Thu Aug 18 13:36:34 PDT 2011
#Fri Aug 19 12:07:57 PDT 2011
compilers.f.unresolved-features=1
compilers.f.unresolved-plugins=1
compilers.incompatible-environment=1
Expand Down
5 changes: 4 additions & 1 deletion org.eclipse.mylyn.modeling.papyrus/build.properties
Expand Up @@ -4,4 +4,7 @@ bin.includes = META-INF/,\
.,\
plugin.xml,\
icons/,\
plugin.properties
plugin.properties,\
about.html
src.includes = about.html
jre.compilation.profile = J2SE-1.5
Expand Up @@ -32,7 +32,6 @@ public class UML2DiagramUIBridgePlugin extends AbstractUIPlugin {

private DiagramUIEditingMonitor monitor;


public UML2DiagramUIBridgePlugin() {
}

Expand Down
Expand Up @@ -77,4 +77,5 @@ public boolean acceptsEditPart(EObject domainObject, EditPart part) {
}
return false;
}

}
Expand Up @@ -23,4 +23,5 @@ public class UML2UIBridge extends DiagramUIBridge {
public IModelUIProvider getDomainUIBridge() {
return UML2DomainBridge.getInstance();
}

}
@@ -1,4 +1,4 @@
#Wed Mar 02 16:00:04 PST 2011
#Sun May 29 17:20:20 CEST 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.codeComplete.argumentPrefixes=
org.eclipse.jdt.core.codeComplete.argumentSuffixes=
Expand All @@ -8,6 +8,8 @@ org.eclipse.jdt.core.codeComplete.localPrefixes=
org.eclipse.jdt.core.codeComplete.localSuffixes=
org.eclipse.jdt.core.codeComplete.staticFieldPrefixes=
org.eclipse.jdt.core.codeComplete.staticFieldSuffixes=
org.eclipse.jdt.core.codeComplete.staticFinalFieldPrefixes=
org.eclipse.jdt.core.codeComplete.staticFinalFieldSuffixes=
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
Expand Down

Large diffs are not rendered by default.

Expand Up @@ -59,4 +59,5 @@ protected void tearDown() throws Exception {
assertFalse(manager.isContextActive());
super.tearDown();
}

}
Expand Up @@ -44,4 +44,5 @@ protected void tearDown() throws Exception {
public IJavaProject getEmfProject() {
return emfProject;
}

}
Expand Up @@ -72,4 +72,5 @@ protected void tearDown() throws Exception {
.getPreferenceStore()
.setValue(ResourcesUiPreferenceInitializer.PREF_MODIFIED_DATE_EXCLUSIONS, true);
}

}
Expand Up @@ -50,4 +50,5 @@ public void testHandles() throws Exception {
assertTrue("Same eobject", !eObject.equals(objectForHandle));
assertEquals(fragmentClass.getClassifierID(), obtainedClass.getClassifierID());
}

}
Expand Up @@ -179,4 +179,5 @@ public static IMethod getMethod(IType t, String methodName, String[] params) {
}
return t.getMethod(methodName, params);
}

}
Expand Up @@ -77,4 +77,5 @@ public void testModification() throws Exception {

assertEquals(element2.getContentType(), EcoreDomainBridge.ECORE_CONTENT_TYPE);
}

}
@@ -1,3 +1,6 @@
bin.includes = model/,\
META-INF/,\
.
.,\
about.html
src.includes = about.html
jre.compilation.profile = J2SE-1.5
@@ -1,4 +1,4 @@
#Wed Mar 02 16:00:04 PST 2011
#Sun May 29 17:20:20 CEST 2011
eclipse.preferences.version=1
org.eclipse.jdt.core.codeComplete.argumentPrefixes=
org.eclipse.jdt.core.codeComplete.argumentSuffixes=
Expand All @@ -8,6 +8,8 @@ org.eclipse.jdt.core.codeComplete.localPrefixes=
org.eclipse.jdt.core.codeComplete.localSuffixes=
org.eclipse.jdt.core.codeComplete.staticFieldPrefixes=
org.eclipse.jdt.core.codeComplete.staticFieldSuffixes=
org.eclipse.jdt.core.codeComplete.staticFinalFieldPrefixes=
org.eclipse.jdt.core.codeComplete.staticFinalFieldSuffixes=
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
Expand Down

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions org.eclipse.mylyn.modeling.ui/build.properties
Expand Up @@ -14,3 +14,4 @@ bin.includes = META-INF/,\
about.html,\
plugin.properties
src.includes = about.html
jre.compilation.profile = J2SE-1.5
Expand Up @@ -46,4 +46,5 @@ public void handleWorkbenchPartSelection(IWorkbenchPart part, ISelection selecti
}
}
}

}
Expand Up @@ -62,4 +62,5 @@ public boolean acceptsEditPart(EObject domainObject, EditPart part) {
// ignore
return false;
}

}