Home
last modified time | relevance | path

Searched refs:PROP_OSGI_FW (Results 1 – 4 of 4) 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 DEquinoxFwConfigFileParser.java287 if (props.getProperty(EquinoxConstants.PROP_OSGI_FW) != null) { in readFwJarLocation()
289 …makeAbsolute(FileUtils.fromFileURL(props.getProperty(EquinoxConstants.PROP_OSGI_FW)), ParserUtils.… in readFwJarLocation()
291 props.setProperty(EquinoxConstants.PROP_OSGI_FW, absoluteFwJar.toString()); in readFwJarLocation()
292 String fwJarString = props.getProperty(EquinoxConstants.PROP_OSGI_FW); in readFwJarLocation()
311 …props.setProperty(EquinoxConstants.PROP_OSGI_FW, FileUtils.toFileURL(URIUtil.makeRelative(launcher… in writeFwJarLocation()
541 if (key.equals(EquinoxConstants.PROP_OSGI_FW)) { in filterPropertiesFromSharedArea()
H A DEquinoxConstants.java51 public static final String PROP_OSGI_FW = "osgi.framework"; //$NON-NLS-1$ field in EquinoxConstants
H A DEquinoxManipulatorImpl.java308 String fwJarLocation = context.getProperty(EquinoxConstants.PROP_OSGI_FW); in initializeRuntime()
311 NLS.bind(Messages.exception_fileURLExpected, EquinoxConstants.PROP_OSGI_FW, fwJarLocation)); in initializeRuntime()
/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.java63 path = (String) properties.get(EquinoxConstants.PROP_OSGI_FW); in getSysPath()