package soe; import java.math.BigInteger; import com.esri.arcgis.interop.extn.ArcGISExtension; @ArcGISExtension public interface MyInterface { public void m1(); // ok public void m2(int a1); //nok: "javac" terminated with errors public int m3(); // ok public String m4(); // ok public Integer m5(); //nok: "null" public MyType m6(); // ok public void m7(String a1); //nok: "javac" terminated with errors public void m8(MyType a1); //nok: "javac" terminated with errors public BigInteger m9(); //nok: "wsimport" terminated with errors }
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.