FileDocCategorySizeDatePackage
NormalDataCollector.javaAPI DocJava SE 5 API942Fri Aug 26 14:54:28 BST 2005com.sun.corba.se.impl.orb

NormalDataCollector.java

/*
 * @(#)NormalDataCollector.java	1.8 03/12/19
 * 
 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package com.sun.corba.se.impl.orb ;

import java.net.InetAddress ;

import java.util.Properties ;

import org.omg.CORBA.INTERNAL ;
import org.omg.CORBA.CompletionStatus ;

public class NormalDataCollector extends DataCollectorBase {
    private String[] args ;

    public NormalDataCollector( String[] args, Properties props, 
	String localHostName, String configurationHostName ) 
    {
	super( props, localHostName, configurationHostName ) ;
	this.args = args ;
    }

    public boolean isApplet() 
    {
	return false ;
    }

    protected void collect()
    {
	checkPropertyDefaults() ;

        findPropertiesFromFile() ;
        findPropertiesFromSystem() ;
        findPropertiesFromProperties() ;
        findPropertiesFromArgs( args ) ;
    }
}