Interface Clippings
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ClippingsImpl
public interface Clippings extends java.io.SerializableThe Interface Clippings.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAlphaChannel()Gets the alpha channel.intgetAlphaIndex()Gets the alpha index.intgetClipIndex()Gets the clip index.java.lang.StringgetClipPath()Gets the clip path.voidsetAlphaChannel(java.lang.String alphaChannel)Sets the alpha channel.voidsetAlphaIndex(int alphaIndex)Sets the alpha index.voidsetClipIndex(int clipIndex)Sets the clip index.voidsetClipPath(java.lang.String clipPath)Sets the clip path.
-
-
-
Method Detail
-
getClipIndex
int getClipIndex()
Gets the clip index.- Returns:
- the clipIndex
-
setClipIndex
void setClipIndex(int clipIndex)
Sets the clip index.- Parameters:
clipIndex- the clipIndex to set
-
getClipPath
java.lang.String getClipPath()
Gets the clip path.- Returns:
- the clipPath
-
setClipPath
void setClipPath(java.lang.String clipPath)
Sets the clip path.- Parameters:
clipPath- the clipPath to set
-
getAlphaIndex
int getAlphaIndex()
Gets the alpha index.- Returns:
- the alphaIndex
-
setAlphaIndex
void setAlphaIndex(int alphaIndex)
Sets the alpha index.- Parameters:
alphaIndex- the alphaIndex to set
-
getAlphaChannel
java.lang.String getAlphaChannel()
Gets the alpha channel.- Returns:
- the alphaChannel
-
setAlphaChannel
void setAlphaChannel(java.lang.String alphaChannel)
Sets the alpha channel.- Parameters:
alphaChannel- the alphaChannel to set
-
-