Exemplo n.º 1
0
 @Override
 public void setPath(ASTModelPath path) {
   super.setPath(path);
   IASTFigureContent content = getContent();
   if (content instanceof LabelContent) {
     ((LabelContent) content).setPath(path);
   }
   delegate.setPath(path);
 }
Exemplo n.º 2
0
 public FieldModelNode(SimpleField field) {
   super(fieldId(field.getName(), field.getType()), true);
   delegate = field;
   init(
       field.getName(),
       field.getAttributes(),
       field.getModifiers(),
       field.getType(),
       field.getInitialValue(),
       false);
 }
Exemplo n.º 3
0
 public void setArgumentNames(Name[] names) {
   delegate.setArgumentNames(names);
 }
Exemplo n.º 4
0
 public boolean isFunction() {
   return delegate.isFunction();
 }
Exemplo n.º 5
0
 public Value getInitialValue() {
   return delegate.getInitialValue();
 }
Exemplo n.º 6
0
 public int getSegmentCount() {
   return delegate.getSegmentCount();
 }
Exemplo n.º 7
0
 public int getSegmentSize(int segment) {
   return delegate.getSegmentSize(segment);
 }
Exemplo n.º 8
0
 public String getBindingType() {
   return delegate.getBindingType();
 }
Exemplo n.º 9
0
 public String getNesCDescription() {
   return delegate.getNesCDescription();
 }
Exemplo n.º 10
0
 public String getFieldType() {
   return delegate.getFieldType();
 }
Exemplo n.º 11
0
 public String getFunctionResultType() {
   return delegate.getFunctionResultType();
 }
Exemplo n.º 12
0
 public String getFunctionName() {
   return delegate.getFunctionName();
 }
Exemplo n.º 13
0
 public Type getType() {
   return delegate.getType();
 }
Exemplo n.º 14
0
 public String getFieldName() {
   return delegate.getFieldName();
 }
Exemplo n.º 15
0
 public Name getName() {
   return delegate.getName();
 }
Exemplo n.º 16
0
 public Modifiers getModifiers() {
   return delegate.getModifiers();
 }
Exemplo n.º 17
0
 public Name[] getArgumentNames() {
   return delegate.getArgumentNames();
 }
Exemplo n.º 18
0
 public Field replace(Field[] indices, Map<GenericType, Type> generic) {
   return delegate.replace(indices, generic);
 }
Exemplo n.º 19
0
 public String getDeclaration(String name) {
   return delegate.getDeclaration(name);
 }
Exemplo n.º 20
0
 public void setIndices(Field[] fields) {
   delegate.setIndices(fields);
 }
Exemplo n.º 21
0
 public String getBindingValue() {
   return delegate.getBindingValue();
 }
Exemplo n.º 22
0
 public Field[] getIndices() {
   return delegate.getIndices();
 }
Exemplo n.º 23
0
 public Binding getSegmentChild(int segment, int index) {
   return delegate.getSegmentChild(segment, index);
 }
Exemplo n.º 24
0
 public void setInitialValue(Value initialValue) {
   delegate.setInitialValue(initialValue);
 }
Exemplo n.º 25
0
 public String getSegmentName(int segment) {
   return delegate.getSegmentName(segment);
 }
Exemplo n.º 26
0
 public <K extends INesCNode> K[] getReferences(InspectionKey<K> key, INesCInspector inspector) {
   return delegate.getReferences(key, inspector);
 }
Exemplo n.º 27
0
 public boolean isField() {
   return delegate.isField();
 }
Exemplo n.º 28
0
 public void setType(Type type) {
   delegate.setType(type);
 }
Exemplo n.º 29
0
 public void setModifiers(Modifiers modifiers) {
   delegate.setModifiers(modifiers);
 }
Exemplo n.º 30
0
 public InspectionKey<?> getReferenceKind(int index) {
   return delegate.getReferenceKind(index);
 }