Interface DriveInformation
-
public interface DriveInformationDefines the drive information.- Since:
- 1.6.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDriveId()Returns the drive id.java.lang.StringgetDriveName()Returns the drive name.com.onwbp.base.text.UserMessagegetErrorMessage()Returns the error message.java.lang.StringgetNewLocation()Returns the new location.java.lang.StringgetOriginalLocation()Returns the original location.booleanisError()Returnstrueif there is an error.voidsetNewLocation(java.lang.String newLocation)Sets the new location to drive information.
-
-
-
Method Detail
-
getNewLocation
java.lang.String getNewLocation()
Returns the new location.
-
setNewLocation
void setNewLocation(java.lang.String newLocation)
Sets the new location to drive information.- Parameters:
newLocation- the new location to save drive
-
getDriveId
java.lang.String getDriveId()
Returns the drive id.
-
getDriveName
java.lang.String getDriveName()
Returns the drive name.
-
getOriginalLocation
java.lang.String getOriginalLocation()
Returns the original location.
-
isError
boolean isError()
Returnstrueif there is an error.
-
getErrorMessage
com.onwbp.base.text.UserMessage getErrorMessage()
Returns the error message.
-
-