Skip to content

Commit

Permalink
add javadoc on private interface!!??
Browse files Browse the repository at this point in the history
  • Loading branch information
pvojtechovsky committed Mar 3, 2018
1 parent 6c251e4 commit e9a497f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/spoon/Metamodel.java
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,13 @@ public String toString() {
}

private interface FieldMaker {
/**
* Creates a instance of Field in Type
* @param role a role of the {@link Field}
* @param derived marker if field is derived
* @param unsettable marker if field is unsettable
* @return this to support fluent API
*/
FieldMaker field(CtRole role, boolean derived, boolean unsettable);
}

Expand Down

0 comments on commit e9a497f

Please sign in to comment.