Home
last modified time | relevance | path

Searched refs:EquinoxConstants (Results 1 – 10 of 10) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.frameworkadmin.equinox/src/org/eclipse/equinox/internal/frameworkadmin/equinox/
H A DEclipseLauncherParser.java49 ParserUtils.removeArgument(EquinoxConstants.OPTION_INSTALL, lines); in setInstall()
103 String vm = ParserUtils.getValueForArgument(EquinoxConstants.OPTION_VM, lines); in getVM()
120 if (ParserUtils.getValueForArgument(EquinoxConstants.OPTION_VM, lines) != null) in setVM()
123 ParserUtils.removeArgument(EquinoxConstants.OPTION_VM, lines); in setVM()
161 if (EquinoxConstants.OPTION_VMARGS.equals(line)) in getJVMArgs()
173 ParserUtils.removeArgument(EquinoxConstants.OPTION_VMARGS, lines); in setJVMArgs()
177 lines.add(EquinoxConstants.OPTION_VMARGS); in setJVMArgs()
186 if (EquinoxConstants.OPTION_VMARGS.equals(line)) in getProgramArgs()
249 ParserUtils.removeArgument(EquinoxConstants.OPTION_CONFIGURATION, lines); in setConfigurationLocation()
260 String startup = ParserUtils.getValueForArgument(EquinoxConstants.OPTION_STARTUP, lines); in getStartup()
[all …]
H A DEquinoxFwConfigFileParser.java32 …ew String[] {EquinoxConstants.PROP_BUNDLES, EquinoxConstants.PROP_FW_EXTENSIONS, EquinoxConstants.…
220 …sharedConfigProperties.put(EquinoxConstants.PROP_SHARED_CONFIGURATION_AREA, props.get(EquinoxConst… in readFwConfig()
266 if (props.getProperty(EquinoxConstants.PROP_BUNDLES_STARTLEVEL) != null) in readDefaultStartLevel()
276 if (props.getProperty(EquinoxConstants.PROP_INITIAL_STARTLEVEL) != null) in readInitialStartLeve()
287 if (props.getProperty(EquinoxConstants.PROP_OSGI_FW) != null) { in readFwJarLocation()
292 String fwJarString = props.getProperty(EquinoxConstants.PROP_OSGI_FW); in readFwJarLocation()
444 if (!outputFile.getName().equals(EquinoxConstants.CONFIG_INI)) in saveFwConfig()
447 outputFile = new File(outputFile, EquinoxConstants.CONFIG_INI); in saveFwConfig()
450 if (!outputFile.getName().equals(EquinoxConstants.CONFIG_INI)) { in saveFwConfig()
453 outputFile = new File(outputFile, EquinoxConstants.CONFIG_INI); in saveFwConfig()
[all …]
H A DEquinoxManipulatorImpl.java59 if (fwConfigLocation.getName().equals(EquinoxConstants.CONFIG_INI)) in checkConsistencyOfFwConfigLocAndFwPersistentDataLoc()
63 fwConfigLocation.getAbsolutePath(), EquinoxConstants.CONFIG_INI)); in checkConsistencyOfFwConfigLocAndFwPersistentDataLoc()
109 File result = new File(launcherFolder, launcherName + EquinoxConstants.INI_EXTENSION); in getLauncherConfigLocation()
113 ConfigData configData = new ConfigData(EquinoxConstants.FW_NAME, EquinoxConstants.FW_VERSION,
114 EquinoxConstants.LAUNCHER_NAME, EquinoxConstants.LAUNCHER_VERSION);
115 …noxLauncherData launcherData = new EquinoxLauncherData(EquinoxConstants.FW_NAME, EquinoxConstants.…
116 EquinoxConstants.LAUNCHER_NAME, EquinoxConstants.LAUNCHER_VERSION);
159 return new SimpleBundlesState(fwAdmin, this, EquinoxConstants.FW_SYMBOLIC_NAME); in getBundlesState()
162 return new SimpleBundlesState(fwAdmin, this, EquinoxConstants.FW_SYMBOLIC_NAME); in getBundlesState()
308 String fwJarLocation = context.getProperty(EquinoxConstants.PROP_OSGI_FW); in initializeRuntime()
[all …]
H A DParserUtils.java70 String fwk = ParserUtils.getValueForArgument(EquinoxConstants.OPTION_FW, lines); in getFrameworkJar()
73 ….getEclipsePluginFullLocation(EquinoxConstants.FW_SYMBOLIC_NAME, new File(URIUtil.toFile(launcherF… in getFrameworkJar()
90 String install = getValueForArgument(EquinoxConstants.OPTION_INSTALL, args); in getOSGiInstallArea()
103 String startup = getValueForArgument(EquinoxConstants.OPTION_STARTUP, args); in getOSGiInstallArea()
H A DEclipseLauncherImpl.java83 cmdList.add(EquinoxConstants.OPTION_CONFIGURATION); in launchInMemory()
87 cmdList.add(EquinoxConstants.OPTION_CLEAN); in launchInMemory()
H A DEquinoxConstants.java16 public class EquinoxConstants { class
H A DEquinoxBundlesState.java140 File file = new File(fwPersistentDataLocation, EquinoxConstants.PERSISTENT_DIR_NAME); in getTimeStamp()
161 if (bundleLocation.getPath().indexOf(EquinoxConstants.FW_SYMBOLIC_NAME) > 0) in isSystemBundle()
162 if (EquinoxConstants.PERSISTENT_DIR_NAME.equals(Utils.getPathFromClause(clauses[0]))) in isSystemBundle()
445 && EquinoxConstants.FW_SYMBOLIC_NAME.equals(bundles[i].getSymbolicName())) { in convertState()
529 return (EquinoxConstants.FW_SYMBOLIC_NAME.equals(bundle.getSymbolicName()) ? bundle : null); in getSystemBundleDescription()
H A DEquinoxFwAdminImpl.java115 int value = version.compareTo(new Version(EquinoxConstants.FW_VERSION)); in isRunningFw()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.frameworkadmin.equinox/src/org/eclipse/equinox/internal/frameworkadmin/equinox/utils/
H A DFileUtils.java21 import org.eclipse.equinox.internal.frameworkadmin.equinox.EquinoxConstants;
60 String path = (String) properties.get(EquinoxConstants.PROP_OSGI_SYSPATH); in getSysPath()
63 path = (String) properties.get(EquinoxConstants.PROP_OSGI_FW); in getSysPath()
75 pluginsDir = new File(home, EquinoxConstants.PLUGINS_DIR); in getSysPath()
88 pluginsDir = new File(launcherDir, EquinoxConstants.PLUGINS_DIR); in getSysPath()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.frameworkadmin.test/src/org/eclipse/equinox/frameworkadmin/tests/
H A DMacOSLikeSetup.java23 import org.eclipse.equinox.internal.frameworkadmin.equinox.EquinoxConstants;
71 manipulator.getLauncherData().addProgramArg(EquinoxConstants.OPTION_STARTUP); in testMacOSSetup()