Skip to content

Commit

Permalink
Correct Class in Java metamodelÃ
Browse files Browse the repository at this point in the history
  • Loading branch information
LABSARI committed Feb 16, 2024
1 parent 94adf56 commit 7e765f7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion gen/org/moosetechnology/model/famix/famixjavaentities/Class.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@
@FameDescription("Class")
public class Class extends Type implements TCanBeAbstract, TCanBeClassSide, TCanBeFinal, TCanImplement, TClass, TClassMetrics, TEntityMetaLevelDependency, THasVisibility, TImportable, TInvocationsReceiver, TLCOMMetrics, TNamedEntity, TPackageable, TReferenceable, TSourceEntity, TType, TWithAttributes, TWithComments, TWithImports, TWithInheritances, TWithMethods {

private Collection<TAttribute> attributes;
private Boolean isInterface;

private Collection<TAttribute> attributes;

private Collection<TComment> comments;

Expand Down Expand Up @@ -409,6 +411,15 @@ public Boolean getIsFinal() {
return isFinal;
}

@FameProperty(name = "isInterface")
public Boolean getIsInterface() {
return isInterface;
}

public void setIsInterface(Boolean isInterface) {
this.isInterface = isInterface;
}

public void setIsFinal(Boolean isFinal) {
this.isFinal = isFinal;
}
Expand Down

0 comments on commit 7e765f7

Please sign in to comment.