11 |
public abstract class AbstractAttributeMetadata implements AttributeMetadataInterface { |
public abstract class AbstractAttributeMetadata implements AttributeMetadataInterface { |
12 |
|
|
13 |
/** The Name of the attribute. This is the 'primary key' **/ |
/** The Name of the attribute. This is the 'primary key' **/ |
14 |
protected NameImpl name; |
protected Name name; |
15 |
|
|
16 |
/** {@link Translation}s of the attribute's title **/ |
/** {@link Translation}s of the attribute's title **/ |
17 |
protected Translation title = new Translation(); |
protected Translation title = new Translation(); |
104 |
* <code>org.bla.plo:blub</code> |
* <code>org.bla.plo:blub</code> |
105 |
*/ |
*/ |
106 |
@Override |
@Override |
107 |
public NameImpl getName() { |
public Name getName() { |
108 |
return name; |
return name; |
109 |
} |
} |
110 |
|
|
126 |
* <code>org.bla.plo:blub</code> |
* <code>org.bla.plo:blub</code> |
127 |
*/ |
*/ |
128 |
@Override |
@Override |
129 |
public void setName(final NameImpl name) { |
public void setName(final Name name) { |
130 |
this.name = name; |
this.name = name; |
131 |
} |
} |
132 |
|
|