GenericContact
Fehlende Datei hinzugefügt git-svn-id: https://svn.libreccm.org/ccm/trunk@599 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
78f895d701
commit
c8b9be8e6a
|
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* To change this template, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
|
||||
package com.arsdigita.cms.contenttypes;
|
||||
|
||||
import com.arsdigita.cms.RelationAttributeCollection;
|
||||
import com.arsdigita.persistence.DataCollection;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Sören Bernstein (quasimodo) <sbernstein@zes.uni-bremen.de>
|
||||
*/
|
||||
public class GenericContactEntryKeys extends RelationAttributeCollection {
|
||||
|
||||
public static final String ATTRIBUTE_NAME = "GenericContactEntryKeys";
|
||||
|
||||
/**
|
||||
* Creates a new instance of GenericContactEntryCollection
|
||||
*/
|
||||
public GenericContactEntryKeys() {
|
||||
super(ATTRIBUTE_NAME);
|
||||
}
|
||||
|
||||
public GenericContactEntryKeys(String key) {
|
||||
super(ATTRIBUTE_NAME, key);
|
||||
}
|
||||
|
||||
public GenericContactEntryKeys(DataCollection dataCollection) {
|
||||
super(dataCollection);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue