Package de.innovationgate.webgate.api.WGDocument

Examples of de.innovationgate.webgate.api.WGDocument.UniqueNameTester


                getDatabase().getSessionContext().isTestUniqueNames()) {
            boolean isUniqueNameOK = false;

            // B00004D4E
            if (this.getUniqueName() != null) {
                UniqueNameTester tester = null;
                try {
                    tester = new UniqueNameTester(this.getUniqueName(), null, getStructKey());
                    Thread proveThread = new Thread(tester);
                    proveThread.start();
                    proveThread.join();
                }
                catch (InterruptedException e) {
View Full Code Here

TOP

Related Classes of de.innovationgate.webgate.api.WGDocument.UniqueNameTester

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.