summaryrefslogtreecommitdiffstats
path: root/test/bindings/java/org/uscxml/apache/commons/scxml2/SCXMLReader.java
blob: 45c2a543d2f4ab1b59ea0629e9c685a74515ca2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.uscxml.apache.commons.scxml2;

import java.net.URL;

public class SCXMLReader {

	public static SCXML read(URL scxml) {
		SCXML foo = new SCXML();
		foo.url = scxml;
		return foo;
	}

}