Package org.eclipse.compare

Examples of org.eclipse.compare.IEditableContentExtension.validateEdit()


        @Override
        public IStatus validateEdit(final Shell shell) {
            if (fInput instanceof IEditableContentExtension) {
                final IEditableContentExtension ext = (IEditableContentExtension) fInput;
                return ext.validateEdit(shell);
            }
            return super.validateEdit(shell);
        }

        @Override
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.