Project

General

Profile

« Previous | Next » 

Revision f5b66699

Added by Patrick Plitzner about 7 years ago

ref #6333 Add generic support for entity collection sections to allow
adding existing entities

  • this is done by two abstract methods allowAddExisting() and addExisting()

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/occurrence/CurrentDeterminationDetailSection.java
118 118
		return "Create new current determination event";
119 119
	}
120 120

  
121
    /**
122
     * {@inheritDoc}
123
     */
124
    @Override
125
    public DeterminationEvent addExisting() {
126
        return null;
127
    }
128

  
129
    /**
130
     * {@inheritDoc}
131
     */
132
    @Override
133
    public boolean allowAddExisting() {
134
        return false;
135
    }
136

  
121 137
}

Also available in: Unified diff