Searched defs:comm (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DJDMInformItem.java31 protected JDMInformCommunity comm = null; field in class:JDMInformItem
49 return comm;
H A DJDMTrapItem.java32 protected JDMTrapCommunity comm = null; field in class:JDMTrapItem
51 return comm;
H A DAclEntryImpl.java223 * @param comm the community to be associated with the principal
228 public boolean addCommunity(String comm){ argument
229 if (commList.contains(comm)) return false;
230 commList.addElement(comm);
237 * @param comm the community to be removed from this entry.
241 public boolean removeCommunity(String comm){ argument
242 if (!commList.contains(comm)) return false;
243 commList.removeElement(comm);
251 * @param comm the community to be checked for.
255 public boolean checkCommunity(String comm){ argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DSourceCodePanel.java55 private EditorCommands comm; field in class:SourceCodePanel
191 comm.toggleBreakpointAtLine(parent, lineNo);
278 public void setEditorCommands(EditorCommands comm, Editor parent) { argument
279 this.comm = comm;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DBugSpot.java945 public DefaultEditor(DefaultEditorFactory fact, String filename, final EditorCommands comm) { argument
957 comm.windowClosed(DefaultEditor.this);
969 code.setEditorCommands(comm, this);

Completed in 36 milliseconds