Searched refs:obj (Results 1 - 6 of 6) sorted by relevance

/opengrok-sun/src/org/opensolaris/opengrok/management/
H A DNotificationHolder.java38 public NotificationHolder(NotificationListener nl, NotificationFilter nf, Object obj) { argument
40 obNL = obj;
H A DAgentIndexRunner.java303 public void addNotificationListener(NotificationListener notiflistener, NotificationFilter notfilt, Object obj) throws IllegalArgumentException { argument
304 log.log(Level.CONFIG, "Adds a notiflistner, with obj {0}", obj.toString());
309 notifListeners.add(new NotificationHolder(notiflistener, notfilt, obj));
315 log.info("removes a notiflistener, no obj");
333 public void removeNotificationListener(NotificationListener notiflistener, NotificationFilter filt, Object obj) throws ListenerNotFoundException { argument
334 log.log(Level.CONFIG, "removes a notiflistener obj {0}", obj);
342 && ((mnf.getFilter() == null) || mnf.getObj().equals(obj))) {
378 log.log(Level.FINE, "having one with obj {
[all...]
/opengrok-sun/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
/opengrok-sun/src/org/opensolaris/opengrok/history/
H A DFileHistoryCache.java113 Object obj = d.readObject();
115 return (History) obj;
/opengrok-sun/src/org/opensolaris/opengrok/configuration/
H A DRuntimeEnvironment.java893 Object obj = d.readObject();
896 if (obj instanceof Configuration) {
897 setConfiguration((Configuration) obj);
/opengrok-sun/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java1143 public boolean equals(Object obj) { argument
1144 if (obj == null) {
1147 if (getClass() != obj.getClass()) {
1150 final IndexDatabase other = (IndexDatabase) obj;

Completed in 26 milliseconds