Skip to content

Commit

Permalink
Use @value in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
twogee committed Jan 27, 2019
1 parent e55d192 commit 62eea52
Show file tree
Hide file tree
Showing 37 changed files with 109 additions and 107 deletions.
22 changes: 11 additions & 11 deletions src/main/java/net/ggtools/grand/ui/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,76 +59,76 @@ public class Application implements Runnable {

/**
* Field ABOUT_DIALOG_IMAGE.
* (value is ""net.ggtools.grand.ui.aboutimage"")
* (value is {@value #ABOUT_DIALOG_IMAGE})
*/
public static final String ABOUT_DIALOG_IMAGE =
"net.ggtools.grand.ui.aboutimage";

/**
* Field APPLICATION_ICON.
* (value is ""net.ggtools.grand.ui.appicon"")
* (value is {@value #APPLICATION_ICON})
*/
public static final String APPLICATION_ICON =
"net.ggtools.grand.ui.appicon";

/**
* Field GRAPH_FONT.
* (value is ""net.ggtools.grand.ui.graphfont"")
* (value is {@value #GRAPH_FONT})
*/
public static final String GRAPH_FONT =
"net.ggtools.grand.ui.graphfont";

/**
* Field LINK_FONT.
* (value is ""net.ggtools.grand.ui.linkfont"")
* (value is {@value #LINK_FONT})
*/
public static final String LINK_FONT =
"net.ggtools.grand.ui.linkfont";

/**
* Field LINK_ICON.
* (value is ""net.ggtools.grand.ui.linkicon"")
* (value is {@value #LINK_ICON})
*/
public static final String LINK_ICON =
"net.ggtools.grand.ui.linkicon";

/**
* Field APPLICATION_NAME.
* (value is ""GrandUI"")
* (value is {@value #APPLICATION_NAME})
*/
private static final String APPLICATION_NAME = "GrandUI";

/**
* Field MONOSPACE_FONT.
* (value is ""net.ggtools.grand.ui.monospacefont"")
* (value is {@value #MONOSPACE_FONT})
*/
public static final String MONOSPACE_FONT =
"net.ggtools.grand.ui.monospacefont";

/**
* Field NODE_FONT.
* (value is ""net.ggtools.grand.ui.nodefont"")
* (value is {@value #NODE_FONT})
*/
public static final String NODE_FONT =
"net.ggtools.grand.ui.nodefont";

/**
* Field NODE_ICON.
* (value is ""net.ggtools.grand.ui.nodeicon"")
* (value is {@value #NODE_ICON})
*/
public static final String NODE_ICON =
"net.ggtools.grand.ui.nodeicon";

/**
* Field TOOLTIP_FONT.
* (value is ""net.ggtools.grand.ui.tooltipfont"")
* (value is {@value #TOOLTIP_FONT})
*/
public static final String TOOLTIP_FONT =
"net.ggtools.grand.ui.tooltipfont";

/**
* Field TOOLTIP_MONOSPACE_FONT.
* (value is ""net.ggtools.grand.ui.tooltipmonospacefont"")
* (value is {@value #TOOLTIP_MONOSPACE_FONT})
*/
public static final String TOOLTIP_MONOSPACE_FONT =
"net.ggtools.grand.ui.tooltipmonospacefont";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class AboutAction extends Action {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""About Grand"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "About Grand";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class ClearFiltersAction extends GraphControllerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Remove filters"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Remove filters";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class EditGraphPropertiesAction extends GraphControllerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Edit Properties"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Edit Properties";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class ExportGraphAction extends GraphControllerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Export Graph as Image"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Export Graph as Image";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class FilterConnectedToNodeAction extends GraphSelectionAction

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Filter connected to selected node"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME =
"Filter connected to selected node";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class FilterFromNodeAction extends GraphSelectionAction

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Filter from selected node"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME =
"Filter from selected node";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class FilterIsolatedNodesAction extends GraphControllerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Filter out isolated nodes"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME =
"Filter out isolated nodes";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class FilterMissingNodesAction extends GraphControllerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Filter out missing nodes"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME =
"Filter out missing nodes";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class FilterPrefixedNodesAction extends GraphControllerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Filter out prefixed nodes"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME =
"Filter out prefixed nodes";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
public class FilterSelectedNodesAction extends GraphListenerAction {
/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Filter out selected nodes"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME =
"Filter out selected nodes";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class FilterToNodeAction extends GraphSelectionAction

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Filter to selected node"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Filter to selected node";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class OpenFileAction extends Action {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Open with properties"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Open with properties";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class PageSetupAction extends Action {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Page Setup"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Page Setup";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class PreferenceAction extends Action {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Preferences"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Preferences";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class PrintAction extends GraphControllerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Print"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Print";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class QuickOpenFileAction extends Action {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Quick Open"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Quick Open";

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/ggtools/grand/ui/actions/QuitAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class QuitAction extends Action {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Quit"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Quit";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class ReloadGraphAction extends GraphControllerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Reload Graph"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Reload Graph";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public void widgetDisposed(final DisposeEvent e) {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Log window"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Log window";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class ShowOutlinePanelAction extends Action {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Show outline panel"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Show outline panel";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class ShowSourcePanelAction extends Action {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Show source panel"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Show source panel";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class UseBusRoutingAction extends GraphListenerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Bus Routing"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Bus Routing";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class ZoomInAction extends GraphControllerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Zoom In"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Zoom In";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class ZoomOutAction extends GraphControllerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Zoom Out"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Zoom Out";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class ZoomResetAction extends GraphControllerAction {

/**
* Field DEFAULT_ACTION_NAME.
* (value is ""Reset Zoom"")
* (value is {@value #DEFAULT_ACTION_NAME})
*/
private static final String DEFAULT_ACTION_NAME = "Reset Zoom";

Expand Down
Loading

0 comments on commit 62eea52

Please sign in to comment.