home *** CD-ROM | disk | FTP | other *** search
- package XMLSpyInterface;
-
- public class SpyExportSettings {
- public long m_nExportSettingsPtr = 0L;
-
- public void ReleaseInstance() {
- this.IReleaseInstance(this.m_nExportSettingsPtr);
- }
-
- public boolean GetCreateKeys() {
- return this.IGetCreateKeys(this.m_nExportSettingsPtr);
- }
-
- public void SetCreateKeys(boolean var1) {
- this.ISetCreateKeys(var1, this.m_nExportSettingsPtr);
- }
-
- public SpyElementList GetElementList() {
- SpyElementList var1 = null;
- long var2 = this.IGetElementList(this.m_nExportSettingsPtr);
- if (var2 > 0L) {
- var1 = new SpyElementList();
- var1.m_nElementListPtr = var2;
- }
-
- return var1;
- }
-
- public void SetElementList(SpyElementList var1) {
- this.ISetElementList(var1.m_nElementListPtr, this.m_nExportSettingsPtr);
- }
-
- public boolean GetEntitiesToText() {
- return this.IGetEntitiesToText(this.m_nExportSettingsPtr);
- }
-
- public void SetEntitiesToText(boolean var1) {
- this.ISetEntitiesToText(var1, this.m_nExportSettingsPtr);
- }
-
- public boolean GetExportAllElements() {
- return this.IGetExportAllElements(this.m_nExportSettingsPtr);
- }
-
- public void SetExportAllElements(boolean var1) {
- this.ISetExportAllElements(var1, this.m_nExportSettingsPtr);
- }
-
- public boolean GetFromAttributes() {
- return this.IGetFromAttributes(this.m_nExportSettingsPtr);
- }
-
- public void SetFromAttributes(boolean var1) {
- this.ISetFromAttributes(var1, this.m_nExportSettingsPtr);
- }
-
- public boolean GetFromSingleSubElements() {
- return this.IGetFromSingleSubElements(this.m_nExportSettingsPtr);
- }
-
- public void SetFromSingleSubElements(boolean var1) {
- this.ISetFromSingleSubElements(var1, this.m_nExportSettingsPtr);
- }
-
- public boolean GetFromTextValues() {
- return this.IGetFromTextValues(this.m_nExportSettingsPtr);
- }
-
- public void SetFromTextValues(boolean var1) {
- this.ISetFromTextValues(var1, this.m_nExportSettingsPtr);
- }
-
- public boolean GetIndependentPrimaryKey() {
- return this.IGetIndependentPrimaryKey(this.m_nExportSettingsPtr);
- }
-
- public void SetIndependentPrimaryKey(boolean var1) {
- this.ISetIndependentPrimaryKey(var1, this.m_nExportSettingsPtr);
- }
-
- public long GetNamespace() {
- return this.IGetNamespace(this.m_nExportSettingsPtr);
- }
-
- public void SetNamespace(long var1) {
- this.ISetNamespace(var1, this.m_nExportSettingsPtr);
- }
-
- public int GetSubLevelLimit() {
- return this.IGetSubLevelLimit(this.m_nExportSettingsPtr);
- }
-
- public void SetSubLevelLimit(int var1) {
- this.ISetSubLevelLimit(var1, this.m_nExportSettingsPtr);
- }
-
- private native boolean IGetCreateKeys(long var1);
-
- private native void ISetCreateKeys(boolean var1, long var2);
-
- private native long IGetElementList(long var1);
-
- private native void ISetElementList(long var1, long var3);
-
- private native boolean IGetEntitiesToText(long var1);
-
- private native void ISetEntitiesToText(boolean var1, long var2);
-
- private native boolean IGetExportAllElements(long var1);
-
- private native void ISetExportAllElements(boolean var1, long var2);
-
- private native boolean IGetFromAttributes(long var1);
-
- private native void ISetFromAttributes(boolean var1, long var2);
-
- private native boolean IGetFromSingleSubElements(long var1);
-
- private native void ISetFromSingleSubElements(boolean var1, long var2);
-
- private native boolean IGetFromTextValues(long var1);
-
- private native void ISetFromTextValues(boolean var1, long var2);
-
- private native boolean IGetIndependentPrimaryKey(long var1);
-
- private native void ISetIndependentPrimaryKey(boolean var1, long var2);
-
- private native long IGetNamespace(long var1);
-
- private native void ISetNamespace(long var1, long var3);
-
- private native int IGetSubLevelLimit(long var1);
-
- private native void ISetSubLevelLimit(int var1, long var2);
-
- private native void IReleaseInstance(long var1);
-
- static {
- System.loadLibrary("XmlSpyLib");
- }
- }
-