Project

General

Profile

« Previous | Next » 

Revision 3be6ef3e

Added by Niels Hoffmann over 13 years ago

performed javacscript:fix and worked on documentation

View differences:

taxeditor-editor/src/main/java/eu/etaxonomy/taxeditor/section/name/NameRelationshipWizard.java
19 19
import eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap;
20 20

  
21 21
/**
22
 * <p>NameRelationshipWizard class.</p>
23
 *
22 24
 * @author n.hoffmann
23 25
 * @created Jun 1, 2010
24 26
 * @version 1.0
......
27 29

  
28 30
	private static NameRelationshipDetailSection callingSection;
29 31
	
32
	/**
33
	 * <p>Constructor for NameRelationshipWizard.</p>
34
	 *
35
	 * @param callingSection a {@link eu.etaxonomy.taxeditor.section.name.NameRelationshipDetailSection} object.
36
	 */
30 37
	public NameRelationshipWizard(NameRelationshipDetailSection callingSection) {
31 38
		this.callingSection = callingSection;
32 39
	}
......
36 43
	
37 44
	private NameRelationshipWizardPage page;
38 45

  
46
	/** {@inheritDoc} */
39 47
	@Override
40 48
	public void addPages() {
41 49
		page = new NameRelationshipWizardPage(callingSection); 
......
46 54
	/* (non-Javadoc)
47 55
	 * @see org.eclipse.jface.wizard.Wizard#performFinish()
48 56
	 */
57
	/** {@inheritDoc} */
49 58
	@Override
50 59
	public boolean performFinish() {
51 60
		return page.isPageComplete();
......
53 62

  
54 63

  
55 64

  
65
	/**
66
	 * <p>getNameRelationship</p>
67
	 *
68
	 * @return a {@link eu.etaxonomy.cdm.model.name.NameRelationship} object.
69
	 */
56 70
	public NameRelationship getNameRelationship() {
57 71
		return page.getNameRelationship();
58 72
	}
59 73

  
74
	/**
75
	 * <p>getConversationHolder</p>
76
	 *
77
	 * @return a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
78
	 */
60 79
	public ConversationHolder getConversationHolder() {
61 80
		return callingSection.getConversationHolder();
62 81
	}
63 82

  
83
	/** {@inheritDoc} */
64 84
	public void update(CdmDataChangeMap changeEvents) {}
65 85
}

Also available in: Unified diff