-
Notifications
You must be signed in to change notification settings - Fork 7
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
fixed the log4j security issues #126
Changes from 1 commit
ac321a6
264285e
ff523a2
4d10e6b
8ad5423
4fef7c8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
eclipse.preferences.version=1 | ||
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=17 |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same applies to the generated code in src-gen, do we really need that in the repo? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Maven build generates all files to the |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** | ||
*/ | ||
package tools.vitruv.change.atomic; | ||
|
||
|
||
/** | ||
* <!-- begin-user-doc --> | ||
* A representation of the model object '<em><b>Additive EChange</b></em>'. | ||
* <!-- end-user-doc --> | ||
* | ||
* <!-- begin-model-doc --> | ||
* * | ||
* Abstract EChange which adds a new value, like an EObject or primitive type. | ||
* <!-- end-model-doc --> | ||
* | ||
* | ||
* @see tools.vitruv.change.atomic.AtomicPackage#getAdditiveEChange() | ||
* @model abstract="true" ElementBounds="org.eclipse.emf.ecore.EJavaObject" ValueBounds="org.eclipse.emf.ecore.EJavaObject" | ||
* @generated | ||
*/ | ||
public interface AdditiveEChange<Element extends Object, Value extends Object> extends EChange<Element> | ||
{ | ||
/** | ||
* <!-- begin-user-doc --> | ||
* <!-- end-user-doc --> | ||
* <!-- begin-model-doc --> | ||
* * | ||
* Get the added value. | ||
* @return The newly added value. | ||
* <!-- end-model-doc --> | ||
* @model kind="operation" required="true" | ||
* @generated | ||
*/ | ||
Value getNewValue(); | ||
|
||
} // AdditiveEChange |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
*/ | ||
package tools.vitruv.change.atomic; | ||
|
||
import org.eclipse.emf.ecore.EFactory; | ||
|
||
/** | ||
* <!-- begin-user-doc --> | ||
* The <b>Factory</b> for the model. | ||
* It provides a create method for each non-abstract class of the model. | ||
* <!-- end-user-doc --> | ||
* @see tools.vitruv.change.atomic.AtomicPackage | ||
* @generated | ||
*/ | ||
public interface AtomicFactory extends EFactory | ||
{ | ||
/** | ||
* The singleton instance of the factory. | ||
* <!-- begin-user-doc --> | ||
* <!-- end-user-doc --> | ||
* @generated | ||
*/ | ||
AtomicFactory eINSTANCE = tools.vitruv.change.atomic.impl.AtomicFactoryImpl.init(); | ||
|
||
/** | ||
* Returns the package supported by this factory. | ||
* <!-- begin-user-doc --> | ||
* <!-- end-user-doc --> | ||
* @return the package supported by this factory. | ||
* @generated | ||
*/ | ||
AtomicPackage getAtomicPackage(); | ||
|
||
} //AtomicFactory |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should probably be excluded or do we really need it?