Author: vhennebert
Date: Thu Nov 14 09:46:24 2013
New Revision: 1541864
URL: http://svn.apache.org/r1541864
Log:
Implemented missing methods
Modified:
xmlgraphics/fop/branches/Temp_InlineContainer/src/java/org/apache/fop/layoutmgr/inline/InlineContainerLayoutManager.java
Modified:
xmlgraphics/fop/branches/Temp_InlineContainer/src/java/org/apache/fop/layoutmgr/inline/InlineContainerLayoutManager.java
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_InlineContainer/src/java/org/apache/fop/layoutmgr/inline/InlineContainerLayoutManager.java?rev=1541864&r1=1541863&r2=1541864&view=diff
==============================================================================
---
xmlgraphics/fop/branches/Temp_InlineContainer/src/java/org/apache/fop/layoutmgr/inline/InlineContainerLayoutManager.java
(original)
+++
xmlgraphics/fop/branches/Temp_InlineContainer/src/java/org/apache/fop/layoutmgr/inline/InlineContainerLayoutManager.java
Thu Nov 14 09:46:24 2013
@@ -301,31 +301,30 @@ public class InlineContainerLayoutManage
}
public List addALetterSpaceTo(List oldList) {
- throw new UnsupportedOperationException("Not implemented");
+ return oldList;
}
public List addALetterSpaceTo(List oldList, int depth) {
- throw new UnsupportedOperationException("Not implemented");
+ return oldList;
}
public String getWordChars(Position pos) {
- throw new UnsupportedOperationException("Not implemented");
+ return "";
}
public void hyphenate(Position pos, HyphContext hyphContext) {
- throw new UnsupportedOperationException("Not implemented");
}
public boolean applyChanges(List oldList) {
- throw new UnsupportedOperationException("Not implemented");
+ return false;
}
public boolean applyChanges(List oldList, int depth) {
- throw new UnsupportedOperationException("Not implemented");
+ return false;
}
public List getChangedKnuthElements(List oldList, int alignment, int
depth) {
- throw new UnsupportedOperationException("Not implemented");
+ return oldList;
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]