Package org.apache.poi.xssf.model
Class ParagraphPropertyFetcher<T>
- java.lang.Object
-
- org.apache.poi.xssf.model.ParagraphPropertyFetcher<T>
-
@Internal public abstract class ParagraphPropertyFetcher<T> extends java.lang.Object
Used internally to navigate the paragraph text style hierarchy within a shape and fetch properties
-
-
Constructor Summary
Constructors Constructor Description ParagraphPropertyFetcher(int level)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract boolean
fetch(CTTextParagraphProperties props)
boolean
fetch(CTShape shape)
T
getValue()
void
setValue(T val)
-
-
-
Method Detail
-
getValue
public T getValue()
-
setValue
public void setValue(T val)
-
fetch
public boolean fetch(CTShape shape)
- Parameters:
shape
- the shape being examined- Returns:
- true if the desired property was fetched
-
fetch
public abstract boolean fetch(CTTextParagraphProperties props)
-
-