This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /******************************************************************************* | |
| ******************************************************************************/ | |
| package de.eiswind.mango.widgets.select2; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.util.ArrayList; | |
| import java.util.List; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var SELECT2_BASEPATH = "rwt-resources/select2/"; | |
| (function() { | |
| 'use strict'; | |
| rap.registerTypeHandler("eiswind.Select2", { | |
| factory : function(properties) { | |
| return new eiswind.Select2(properties); | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import javax.swing.text.MutableAttributeSet; | |
| import javax.swing.text.html.HTML; | |
| import javax.swing.text.html.HTMLEditorKit; | |
| import javax.swing.text.html.parser.ParserDelegator; | |
| final StringBuilder sb = new StringBuilder(); | |
| HTMLEditorKit.ParserCallback parserCallback = new HTMLEditorKit.ParserCallback() { | |
| public boolean readyForNewline; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.eclipse.core.resources.IProject; | |
| import org.eclipse.core.resources.IWorkspaceRoot; | |
| import org.eclipse.core.resources.ResourcesPlugin; | |
| import org.eclipse.core.runtime.CoreException; | |
| import org.eclipse.jdt.core.IJavaProject; | |
| import org.eclipse.jdt.core.JavaCore; | |
| public class EclipseJavaProjects { | |
| public static List<IJavaProject> getJavaProjects() { | |
| List<IJavaProject> projectList = new LinkedList<IJavaProject>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class AEclipsePluginImages{ | |
| private final static ImageRegistry PLUGIN_REGISTRY = new ImageRegistry(); | |
| public final static String ICONS_PATH = "icons/"; //$NON-NLS-1$ | |
| private static final String PATH_OBJ = ICONS_PATH + "obj16/"; //$NON-NLS-1$ | |
| private static final String PATH_LCL = ICONS_PATH + "elcl16/"; //$NON-NLS-1$ | |
| private static final String PATH_LCL_DISABLED = ICONS_PATH + "dlcl16/"; //$NON-NLS-1$ | |
| public static final ImageDescriptor DESC_MODEL_OVERVIEW = create(PATH_OBJ, |