All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bimserver.test.TestChangeWrappedValue Maven / Gradle / Ivy

There is a newer version: 1.5.91
Show newest version
package org.bimserver.test;

/******************************************************************************
 * Copyright (C) 2009-2018  BIMserver.org
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see {@literal}.
 *****************************************************************************/

import org.bimserver.LocalDevSetup;
import org.bimserver.emf.IfcModelInterface;
import org.bimserver.emf.IfcModelInterfaceException;
import org.bimserver.interfaces.objects.SProject;
import org.bimserver.models.ifc2x3tc1.IfcLabel;
import org.bimserver.models.ifc2x3tc1.IfcPropertySingleValue;
import org.bimserver.plugins.services.BimServerClientInterface;
import org.bimserver.shared.exceptions.BimServerClientException;
import org.bimserver.shared.exceptions.PublicInterfaceNotFoundException;
import org.bimserver.shared.exceptions.ServiceException;

public class TestChangeWrappedValue {
	public static void main(String[] args) {
		new TestChangeWrappedValue().start();
	}

	private void start() {
		try {
			BimServerClientInterface client = LocalDevSetup.setupJson("http://localhost:8080");
			long poid = 2686977;
			long roid = 720899;
			SProject project = client.getServiceInterface().getProjectByPoid(poid);
			IfcModelInterface model = client.getModel(project, roid, true, false);
			
			for (IfcPropertySingleValue prop : model.getAll(IfcPropertySingleValue.class)) {
//				IfcValue value = ((IfcPropertySingleValue) prop).getNominalValue();
//				if(value instanceof IfcLabel){
//					System.out.println(prop.getOid() + " is " + ((IfcLabel) value).getWrappedValue() );
//		    	   ((IfcLabel) value).setWrappedValue(((IfcLabel) value).getWrappedValue() + " changed");
//				}
				
				IfcLabel label = model.create(IfcLabel.class);
				label.setWrappedValue("blabla");
				prop.setNominalValue(label);
			}
			
			model.commit("blaat");
		} catch (ServiceException e) {
			e.printStackTrace();
		} catch (BimServerClientException e) {
			e.printStackTrace();
		} catch (PublicInterfaceNotFoundException e) {
			e.printStackTrace();
		} catch (IfcModelInterfaceException e) {
			e.printStackTrace();
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy