Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #40

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Exclusive or non-exclusive customizers
Signed-off-by: Kyrill Zotkin <[email protected]>
  • Loading branch information
kyrillzotkin committed Jan 15, 2023
commit 8ef2ba9699dd9136f483db63bfcd8d95a37e848c
8 changes: 6 additions & 2 deletions bundles/org.enterprisedomain.classmaker.edit/.classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src/"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
org.eclipse.jdt.core.compiler.compliance=11
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
org.eclipse.jdt.core.compiler.compliance=17
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=11
org.eclipse.jdt.core.compiler.source=17
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.emf.edit;visibility:=reexport,
org.eclipse.emf.ecore;visibility:=reexport,
org.eclipse.emf.ecore.edit;visibility:=reexport,
org.eclipse.emf.ecp.view.util.swt;bundle-version="[1.19.0,2.0.0)",
org.eclipse.emf.ecp.ui.view.swt;bundle-version="[1.19.0,2.0.0)",
org.eclipse.e4.ui.services,
org.eclipse.ui;bundle-version="3.112.0"
Bundle-ActivationPolicy: lazy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,3 +205,12 @@ _UI_Models_generated_feature = Generated
_UI_Models_generatedEdit_feature = Generated Edit
_UI_Models_generatedEditor_feature = Generated Editor
_UI_Models_parent_feature = Parent
_UI_Customizer_exclusive_feature = Exclusive
_UI_Customizer_stage_feature = Stage
_UI_Customizer_customized_feature = Customized
_UI_Customizer_composite_feature = Composite
_UI_State_nonExclusiveStateCustomizers_feature = Non Exclusive State Customizers
_UI_Workspace_nonExclusiveCustomizers_feature = Non Exclusive Customizers
_UI_State_excludedEPackages_feature = Excluded EPackages
_UI_Workspace_excludedEPackages_feature = Excluded EPackages
_UI_State_basePackage_feature = Base Package
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,9 @@
import org.enterprisedomain.classmaker.ClassMakerPackage;

/**
* This is the item provider adapter for a
* {@link org.enterprisedomain.classmaker.Blueprint} object. <!-- begin-user-doc
* This is the item provider adapter for a {@link org.enterprisedomain.classmaker.Blueprint} object.
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
*
* @generated
*/
public class BlueprintItemProvider extends ItemProviderAdapter implements IEditingDomainItemProvider,
Expand Down Expand Up @@ -121,9 +120,9 @@ protected void addCompletionListenersPropertyDescriptor(Object object) {
}

/**
* This adds a property descriptor for the Edit feature. <!-- begin-user-doc -->
* This adds a property descriptor for the Edit feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected void addEditPropertyDescriptor(Object object) {
Expand All @@ -137,9 +136,9 @@ protected void addEditPropertyDescriptor(Object object) {
}

/**
* This adds a property descriptor for the Editor feature. <!-- begin-user-doc
* This adds a property descriptor for the Editor feature.
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
*
* @generated
*/
protected void addEditorPropertyDescriptor(Object object) {
Expand All @@ -153,8 +152,8 @@ protected void addEditorPropertyDescriptor(Object object) {
}

/**
* This returns Blueprint.gif. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* This returns Blueprint.gif.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
Expand All @@ -163,9 +162,9 @@ public Object getImage(Object object) {
}

/**
* This returns the label text for the adapted class. <!-- begin-user-doc -->
* This returns the label text for the adapted class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
Expand All @@ -175,10 +174,9 @@ public String getText(Object object) {
}

/**
* This handles model notifications by calling {@link #updateChildren} to update
* any cached children and by creating a viewer notification, which it passes to
* {@link #fireNotifyChanged}. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* This handles model notifications by calling {@link #updateChildren} to update any cached
* children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
Expand All @@ -196,10 +194,10 @@ public void notifyChanged(Notification notification) {
}

/**
* This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing
* the children that can be created under this object. <!-- begin-user-doc -->
* This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children
* that can be created under this object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,32 +27,32 @@
*/
public final class ClassMakerEditPlugin extends EMFPlugin {
/**
* Keep track of the singleton. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* Keep track of the singleton.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public static final ClassMakerEditPlugin INSTANCE = new ClassMakerEditPlugin();

/**
* Keep track of the singleton. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* Keep track of the singleton.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
private static Implementation plugin;

/**
* Create the instance. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* Create the instance.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public ClassMakerEditPlugin() {
super(new ResourceLocator[] { EcoreEditPlugin.INSTANCE, });
}

/**
* Returns the singleton instance of the Eclipse plugin. <!-- begin-user-doc -->
* Returns the singleton instance of the Eclipse plugin.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @return the singleton instance.
* @generated
*/
Expand All @@ -62,9 +62,9 @@ public ResourceLocator getPluginResourceLocator() {
}

/**
* Returns the singleton instance of the Eclipse plugin. <!-- begin-user-doc -->
* Returns the singleton instance of the Eclipse plugin.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @return the singleton instance.
* @generated
*/
Expand All @@ -73,15 +73,15 @@ public static Implementation getPlugin() {
}

/**
* The actual implementation of the Eclipse <b>Plugin</b>. <!-- begin-user-doc
* The actual implementation of the Eclipse <b>Plugin</b>.
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
*
* @generated
*/
public static class Implementation extends EclipsePlugin {
/**
* Creates an instance. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* Creates an instance.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public Implementation() {
Expand Down
Loading