Package eu.planets_project.tb.gui.backing.service

Examples of eu.planets_project.tb.gui.backing.service.ServiceRecordsByFormatBean


        for( ServiceRecordBean srb : records ) {
          if( this.getSelectedServiceTypes().contains( srb.getType() ) ) {
            if( srb.getInputs(true) != null ) {
                for( URI fmt : srb.getInputs(true) ) {
                    if( sbn.get(fmt) == null ) {
                        sbn.put(fmt, new ServiceRecordsByFormatBean( fr.getFormatForUri(fmt) ) );
                    }
                    sbn.get(fmt).addAsInputService(srb);
                }
            }
            if( srb.getOutputs() != null ) {
                for( URI fmt : srb.getOutputs() ) {
                    if( sbn.get(fmt) == null ) {
                        sbn.put(fmt, new ServiceRecordsByFormatBean( fr.getFormatForUri(fmt) ) );
                    }
                    sbn.get(fmt).addAsOutputService(srb);
                }
            }
          }
View Full Code Here

TOP

Related Classes of eu.planets_project.tb.gui.backing.service.ServiceRecordsByFormatBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.