1 23 24 package org.objectweb.jorm.facility.naming.polymorphid; 25 26 import org.objectweb.jorm.naming.api.PName; 27 import org.objectweb.jorm.naming.api.PNamingContext; 28 import org.objectweb.jorm.naming.lib.BasicPName; 29 30 33 public class PolymorphIdRefN extends BasicPName implements PName { 34 PolymorphIdPName nameInBinder; 35 36 PolymorphIdRefN(PNamingContext pnc) { 37 this.pnc = pnc; 38 } 39 40 PolymorphIdRefN(PNamingContext pnc, PolymorphIdPName nameInBinder) { 41 this.pnc = pnc; 42 this.nameInBinder = nameInBinder; 43 } 44 45 47 public boolean isNull() { 48 return nameInBinder.isNull(); 49 } 50 } 51 | Popular Tags |