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 bValue) {
- this.ISetCreateKeys(bValue, this.m_nExportSettingsPtr);
- }
-
- public SpyElementList GetElementList() {
- SpyElementList obj = null;
- long nHelp = this.IGetElementList(this.m_nExportSettingsPtr);
- if (nHelp > 0L) {
- obj = new SpyElementList();
- obj.m_nElementListPtr = nHelp;
- }
-
- return obj;
- }
-
- public void SetElementList(SpyElementList obj) {
- this.ISetElementList(obj.m_nElementListPtr, this.m_nExportSettingsPtr);
- }
-
- public boolean GetEntitiesToText() {
- return this.IGetEntitiesToText(this.m_nExportSettingsPtr);
- }
-
- public void SetEntitiesToText(boolean bValue) {
- this.ISetEntitiesToText(bValue, this.m_nExportSettingsPtr);
- }
-
- public boolean GetExportAllElements() {
- return this.IGetExportAllElements(this.m_nExportSettingsPtr);
- }
-
- public void SetExportAllElements(boolean bValue) {
- this.ISetExportAllElements(bValue, this.m_nExportSettingsPtr);
- }
-
- public boolean GetFromAttributes() {
- return this.IGetFromAttributes(this.m_nExportSettingsPtr);
- }
-
- public void SetFromAttributes(boolean bValue) {
- this.ISetFromAttributes(bValue, this.m_nExportSettingsPtr);
- }
-
- public boolean GetFromSingleSubElements() {
- return this.IGetFromSingleSubElements(this.m_nExportSettingsPtr);
- }
-
- public void SetFromSingleSubElements(boolean bValue) {
- this.ISetFromSingleSubElements(bValue, this.m_nExportSettingsPtr);
- }
-
- public boolean GetFromTextValues() {
- return this.IGetFromTextValues(this.m_nExportSettingsPtr);
- }
-
- public void SetFromTextValues(boolean bValue) {
- this.ISetFromTextValues(bValue, this.m_nExportSettingsPtr);
- }
-
- public boolean GetIndependentPrimaryKey() {
- return this.IGetIndependentPrimaryKey(this.m_nExportSettingsPtr);
- }
-
- public void SetIndependentPrimaryKey(boolean bValue) {
- this.ISetIndependentPrimaryKey(bValue, this.m_nExportSettingsPtr);
- }
-
- public long GetNamespace() {
- return this.IGetNamespace(this.m_nExportSettingsPtr);
- }
-
- public void SetNamespace(long nValue) {
- this.ISetNamespace(nValue, this.m_nExportSettingsPtr);
- }
-
- public int GetSubLevelLimit() {
- return this.IGetSubLevelLimit(this.m_nExportSettingsPtr);
- }
-
- public void SetSubLevelLimit(int nValue) {
- this.ISetSubLevelLimit(nValue, 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");
- }
- }
-