Interface Border
-
- All Known Implementing Classes:
BorderImpl
public interface Border extends EObject
A representation of the model object 'Border'. Border configuration specifies border location and color.The following features are supported:
- See Also:
BootstrapPackage.getBorder()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ColorgetColor()Returns the value of the 'Color' attribute.booleanisBottom()Returns the value of the 'Bottom' attribute.booleanisLeft()Returns the value of the 'Left' attribute.booleanisRight()Returns the value of the 'Right' attribute.booleanisTop()Returns the value of the 'Top' attribute.voidsetBottom(boolean value)Sets the value of the 'Bottom' attribute.voidsetColor(Color value)Sets the value of the 'Color' attribute.voidsetLeft(boolean value)Sets the value of the 'Left' attribute.voidsetRight(boolean value)Sets the value of the 'Right' attribute.voidsetTop(boolean value)Sets the value of the 'Top' attribute.-
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
-
-
-
-
Method Detail
-
getColor
Color getColor()
Returns the value of the 'Color' attribute. Border bootstrap color.- Returns:
- the value of the 'Color' attribute.
- See Also:
setColor(Color),BootstrapPackage.getBorder_Color()
-
setColor
void setColor(Color value)
Sets the value of the 'Color' attribute.- Parameters:
value- the new value of the 'Color' attribute.- See Also:
getColor()
-
isTop
boolean isTop()
Returns the value of the 'Top' attribute. The default value is"false". Top border.- Returns:
- the value of the 'Top' attribute.
- See Also:
setTop(boolean),BootstrapPackage.getBorder_Top()
-
setTop
void setTop(boolean value)
Sets the value of the 'Top' attribute.- Parameters:
value- the new value of the 'Top' attribute.- See Also:
isTop()
-
isBottom
boolean isBottom()
Returns the value of the 'Bottom' attribute. The default value is"false". Bottom border.- Returns:
- the value of the 'Bottom' attribute.
- See Also:
setBottom(boolean),BootstrapPackage.getBorder_Bottom()
-
setBottom
void setBottom(boolean value)
Sets the value of the 'Bottom' attribute.- Parameters:
value- the new value of the 'Bottom' attribute.- See Also:
isBottom()
-
isLeft
boolean isLeft()
Returns the value of the 'Left' attribute. The default value is"false". Left border.- Returns:
- the value of the 'Left' attribute.
- See Also:
setLeft(boolean),BootstrapPackage.getBorder_Left()
-
setLeft
void setLeft(boolean value)
Sets the value of the 'Left' attribute.- Parameters:
value- the new value of the 'Left' attribute.- See Also:
isLeft()
-
isRight
boolean isRight()
Returns the value of the 'Right' attribute. The default value is"false". Righ border.- Returns:
- the value of the 'Right' attribute.
- See Also:
setRight(boolean),BootstrapPackage.getBorder_Right()
-
-