/// <exception cref="BadSyntaxException"> /// The <paramref name="name"/> does not fit to the syntax. /// </exception> public override Method AddMethod() { Method method = new JavaMethod(this); method.AccessModifier = AccessModifier.Public; AddOperation(method); return method; }
public override Method AddMethod() { Method method = new JavaMethod(this); AddOperation(method); return method; }
public override Operation Clone(CompositeType newParent) { JavaMethod method = new JavaMethod(newParent); method.CopyFrom(this); return method; }