1 2 package com.sun.corba.se.impl.orb ; 3 4 import java.net.InetAddress ; 5 6 import java.util.Properties ; 7 8 import org.omg.CORBA.INTERNAL ; 9 import org.omg.CORBA.CompletionStatus ; 10 11 public class PropertyOnlyDataCollector extends DataCollectorBase 12 { 13 public PropertyOnlyDataCollector( Properties props, 14 String localHostName, String configurationHostName ) 15 { 16 super( props, localHostName, configurationHostName ) ; 17 } 18 19 public boolean isApplet() 20 { 21 return false ; 22 } 23 24 protected void collect() 25 { 26 checkPropertyDefaults() ; 27 28 findPropertiesFromProperties() ; 29 } 30 } 31 | Popular Tags |