GenericContact

Fehlende Datei hinzugefügt

git-svn-id: https://svn.libreccm.org/ccm/trunk@599 8810af33-2d31-482b-a856-94f89814c4df
master
quasi 2010-11-08 12:00:19 +00:00
parent 78f895d701
commit c8b9be8e6a
1 changed files with 34 additions and 0 deletions

View File

@ -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);
}
}