Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6c3466a675af0641e4759e22b6b10447dbf918d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 * <copyright>
 * </copyright>
 *
 * $Id$
 */
package org.eclipse.emf.cdo.releng.doc.article;

import org.eclipse.emf.cdo.releng.doc.article.util.HtmlWriter;

import com.sun.javadoc.SeeTag;

/**
 * <!-- begin-user-doc --> A representation of the model object '<em><b>Link Target</b></em>'. <!-- end-user-doc -->
 * <p>
 * The following features are supported:
 * <ul>
 * <li>{@link org.eclipse.emf.cdo.releng.doc.article.LinkTarget#getDefaultLabel <em>Default Label</em>}</li>
 * <li>{@link org.eclipse.emf.cdo.releng.doc.article.LinkTarget#getTooltip <em>Tooltip</em>}</li>
 * </ul>
 * </p>
 * 
 * @see org.eclipse.emf.cdo.releng.doc.article.ArticlePackage#getLinkTarget()
 * @model abstract="true"
 * @generated
 */
public interface LinkTarget extends Identifiable
{
  /**
   * Returns the value of the '<em><b>Default Label</b></em>' attribute. <!-- begin-user-doc -->
   * <p>
   * If the meaning of the '<em>Default Label</em>' attribute isn't clear, there really should be more of a description
   * here...
   * </p>
   * <!-- end-user-doc -->
   * 
   * @return the value of the '<em>Default Label</em>' attribute.
   * @see org.eclipse.emf.cdo.releng.doc.article.ArticlePackage#getLinkTarget_DefaultLabel()
   * @model transient="true" changeable="false" volatile="true" derived="true"
   * @generated
   */
  String getDefaultLabel();

  /**
   * Returns the value of the '<em><b>Tooltip</b></em>' attribute. <!-- begin-user-doc -->
   * <p>
   * If the meaning of the '<em>Label</em>' attribute isn't clear, there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
   * 
   * @return the value of the '<em>Tooltip</em>' attribute.
   * @see org.eclipse.emf.cdo.releng.doc.article.ArticlePackage#getLinkTarget_Tooltip()
   * @model required="true" transient="true" changeable="false" volatile="true" derived="true"
   * @generated
   */
  String getTooltip();

  /**
   * <!-- begin-user-doc --> <!-- end-user-doc -->
   * 
   * @model required="true" sourceRequired="true"
   * @generated
   */
  String linkFrom(StructuralElement source);

  void generateLink(HtmlWriter out, StructuralElement linkSource, SeeTag tag);

} // LinkTarget

Back to the top