Searched defs:obj (Results 1 - 7 of 7) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/management/
H A DNotificationHolder.java38 public NotificationHolder(NotificationListener nl, NotificationFilter nf, Object obj) { argument
40 obNL = obj;
H A DAgentIndexRunner.java306 public void addNotificationListener(NotificationListener notiflistener, NotificationFilter notfilt, Object obj) throws IllegalArgumentException { argument
307 LOGGER.log(Level.CONFIG, "Adds a notiflistner, with obj {0}", obj.toString());
312 notifListeners.add(new NotificationHolder(notiflistener, notfilt, obj));
318 LOGGER.info("removes a notiflistener, no obj");
336 public void removeNotificationListener(NotificationListener notiflistener, NotificationFilter filt, Object obj) throws ListenerNotFoundException { argument
337 LOGGER.log(Level.CONFIG, "removes a notiflistener obj {0}", obj);
345 && ((mnf.getFilter() == null) || mnf.getObj().equals(obj))) {
381 LOGGER.log(Level.FINE, "having one with obj {
[all...]
/opengrok/src/org/opensolaris/opengrok/configuration/
H A DProject.java239 public boolean equals(Object obj) { argument
240 if (this == obj) {
243 if (obj == null) {
246 if (getClass() != obj.getClass()) {
249 final Project other = (Project) obj;
H A DGroup.java171 public boolean equals(Object obj) { argument
172 if (this == obj) {
175 if (obj == null) {
178 if (getClass() != obj.getClass()) {
181 final Group other = (Group) obj;
/opengrok/src/org/opensolaris/opengrok/configuration/messages/
H A DMessage.java212 public boolean equals(Object obj) { argument
213 if (this == obj) {
216 if (obj == null) {
219 if (getClass() != obj.getClass()) {
222 final Message other = (Message) obj;
/opengrok/lib/
H A Dbcel-6.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
/opengrok/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java1160 public boolean equals(Object obj) { argument
1161 if (obj == null) {
1164 if (getClass() != obj.getClass()) {
1167 final IndexDatabase other = (IndexDatabase) obj;

Completed in 159 milliseconds