Class Setting
- java.lang.Object
-
- eu.solven.cleanthat.language.java.imports.revelc.Setting
-
public class Setting extends Object
A class representing the setting XML element in the Eclipse formatter config file, including the id and value attributes.- Author:
- Matt Blanchette
-
-
Constructor Summary
Constructors Constructor Description Setting()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
Gets the id.String
getValue()
Gets the value.void
setId(String newId)
Sets the id.void
setValue(String newValue)
Sets the value.
-
-
-
Method Detail
-
getId
public String getId()
Gets the id.- Returns:
- the id
-
setId
public void setId(String newId)
Sets the id.- Parameters:
newId
- the new id
-
getValue
public String getValue()
Gets the value.- Returns:
- the value
-
setValue
public void setValue(String newValue)
Sets the value.- Parameters:
newValue
- the new value
-
-