1 package com.bonevich.erj.ui;
2
3 import org.tigris.gef.base.ModePlace;
4 import org.tigris.gef.graph.GraphFactory;
5
6 /***
7 * The sole purpose of this class is to provide an instructional
8 * string to the status display for placing a new relation.
9 */
10 public class ModeCreateRelation extends ModePlace
11 {
12 ////////////////////////////////////////////////////////////////
13 // Constructor
14 public ModeCreateRelation(GraphFactory gf)
15 {
16 super(gf);
17 }
18
19 ////////////////////////////////////////////////////////////////
20 // Mode API
21 public String instructions()
22 {
23 return "Click to define a new entity";
24 }
25
26 } /* end class ModeCreateRelation */
This page was automatically generated by Maven