1 7 8 package com.sun.corba.se.impl.orb ; 9 10 import java.net.InetAddress ; 11 12 import java.util.Properties ; 13 14 import org.omg.CORBA.INTERNAL ; 15 import org.omg.CORBA.CompletionStatus ; 16 17 public class NormalDataCollector extends DataCollectorBase { 18 private String [] args ; 19 20 public NormalDataCollector( String [] args, Properties props, 21 String localHostName, String configurationHostName ) 22 { 23 super( props, localHostName, configurationHostName ) ; 24 this.args = args ; 25 } 26 27 public boolean isApplet() 28 { 29 return false ; 30 } 31 32 protected void collect() 33 { 34 checkPropertyDefaults() ; 35 36 findPropertiesFromFile() ; 37 findPropertiesFromSystem() ; 38 findPropertiesFromProperties() ; 39 findPropertiesFromArgs( args ) ; 40 } 41 } 42 | Popular Tags |