public abstract class LicenseManager extends Object
| Constructor and Description |
|---|
LicenseManager() |
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
accept(ILicense license)
Record the acceptance of the specified license.
|
abstract boolean |
hasAcceptedLicenses()
Return a boolean indicating whether any licenses have been
accepted.
|
abstract boolean |
isAccepted(ILicense license)
Return a boolean indicating whether a particular license has previously
been accepted.
|
abstract boolean |
reject(ILicense license)
Record the rejection of the specified license.
|
public abstract boolean accept(ILicense license)
license - the license to be acceptedtrue if the license was recorded as accepted, false if
it was not.public abstract boolean reject(ILicense license)
license - the license to be rejectedtrue if the license was recorded as rejected, false if
it was not.public abstract boolean isAccepted(ILicense license)
license - the license in questiontrue if the license has previously been accepted,
false if it has not been accepted before.public abstract boolean hasAcceptedLicenses()
true if accepted licenses have been recorded,
false if there have been no licenses accepted.
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.