1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-08 17:45:24 +02:00

[150386] supplied a default implementation for supportsServerLaunchProperties

This commit is contained in:
David Dykstal 2006-12-12 02:30:08 +00:00
parent dc366d4233
commit 57d588d83d

View file

@ -443,14 +443,16 @@ public abstract class SubSystemConfiguration implements ISubSystemConfiguration
} }
/** /**
* Tell us if this subsystem factory supports server launch properties, which allow the user * Tell us if this subsystem factory supports server launch properties, which allow the user
* to configure how the server-side code for these subsystems are started. There is a Server * to configure how the server-side code for these subsystems are started. There is a Server
* Launch Setting property page, with a pluggable composite, where users can configure these * Launch Setting property page, with a pluggable composite, where users can configure these
* properties. * properties.
* <p> * <p>
* If you return true here, you may also want to override {@link #supportsServerLaunchType(ServerLaunchType)}. * If you return true here, you may also want to override {@link #supportsServerLaunchType(ServerLaunchType)}.
* <br> By default we return false here. This is overridden in UniversalFileSubSystemConfiguration though. * <br> By default we return false here. This is overridden in UniversalFileSubSystemConfiguration though.
*/ */
public abstract boolean supportsServerLaunchProperties(IHost host); public boolean supportsServerLaunchProperties(IHost host) {
return false;
}
/** /**
* If {@link #supportsServerLaunchProperties(IHost)} returns true, this method may be called by * If {@link #supportsServerLaunchProperties(IHost)} returns true, this method may be called by