Package at.bestsolution.efxclipse.tooling.ui.preview.text

Examples of at.bestsolution.efxclipse.tooling.ui.preview.text.XMLPartitionScanner


          SourceViewer sourceViewer = new SourceViewer(folder, verticalRuler, styles);
          sourceViewer.configure(new XMLConfiguration(new ColorManager()));
          sourceViewer.setEditable(false);
          sourceViewer.getTextWidget().setFont(JFaceResources.getTextFont());

          IDocumentPartitioner partitioner = new FastPartitioner(new XMLPartitionScanner(), new String[] { XMLPartitionScanner.XML_TAG, XMLPartitionScanner.XML_COMMENT });
          partitioner.connect(document);
          document.setDocumentPartitioner(partitioner);
          sourceViewer.setDocument(document);
          verticalRuler.setModel(model);
          fxmlContent.setControl(sourceViewer.getControl());
View Full Code Here

TOP

Related Classes of at.bestsolution.efxclipse.tooling.ui.preview.text.XMLPartitionScanner

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.