removed readonly and required attributes, started with r1339666
git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1339872 13f79535-47bb-0310-9956-ffa450edef68master
parent
c63c9e01fb
commit
53dfd41c54
|
|
@ -35,10 +35,6 @@ public class ComponentAnnotationContent
|
|||
|
||||
private String roleHint;
|
||||
|
||||
private boolean required = false;
|
||||
|
||||
private boolean readonly = false;
|
||||
|
||||
public ComponentAnnotationContent( String fieldName )
|
||||
{
|
||||
super( fieldName );
|
||||
|
|
@ -76,26 +72,6 @@ public class ComponentAnnotationContent
|
|||
return null;
|
||||
}
|
||||
|
||||
public boolean required()
|
||||
{
|
||||
return required;
|
||||
}
|
||||
|
||||
public void required( boolean required )
|
||||
{
|
||||
this.required = required;
|
||||
}
|
||||
|
||||
public boolean readonly()
|
||||
{
|
||||
return readonly;
|
||||
}
|
||||
|
||||
public void readonly( boolean readonly )
|
||||
{
|
||||
this.readonly = readonly;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue