8068007: [Findbugs] SA com.sun.java.swing.action.ActionManager.manager should be package protect
Fixed java programming style nit Reviewed-by: dholmes, jbachorik, sspitsyn
This commit is contained in:
parent
56a4782b81
commit
fcf9563213
@ -46,6 +46,11 @@ public abstract class ActionManager
|
|||||||
return manager;
|
return manager;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected static void setInstance(ActionManager m)
|
||||||
|
{
|
||||||
|
manager = m;
|
||||||
|
}
|
||||||
|
|
||||||
protected abstract void addActions();
|
protected abstract void addActions();
|
||||||
|
|
||||||
protected void addAction(String cmdname, Action action)
|
protected void addAction(String cmdname, Action action)
|
||||||
@ -90,6 +95,6 @@ public abstract class ActionManager
|
|||||||
|
|
||||||
private HashMap actions;
|
private HashMap actions;
|
||||||
private static ActionUtilities utilities = new ActionUtilities();
|
private static ActionUtilities utilities = new ActionUtilities();
|
||||||
protected static ActionManager manager;
|
private static ActionManager manager;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -32,10 +32,12 @@ import com.sun.java.swing.action.ActionManager;
|
|||||||
public class HSDBActionManager extends ActionManager {
|
public class HSDBActionManager extends ActionManager {
|
||||||
|
|
||||||
public static ActionManager getInstance() {
|
public static ActionManager getInstance() {
|
||||||
if (manager == null) {
|
ActionManager m = ActionManager.getInstance();
|
||||||
manager = new HSDBActionManager();
|
if (m == null) {
|
||||||
|
m = new HSDBActionManager();
|
||||||
|
ActionManager.setInstance(m);
|
||||||
}
|
}
|
||||||
return manager;
|
return m;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void addActions() {
|
protected void addActions() {
|
||||||
|
Loading…
Reference in New Issue
Block a user