1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 10:49:24 +02:00
git-svn-id: https://only.mawhrin.net/repos/FBReaderJ/trunk@380 6a642e6f-84f6-412e-ac94-c4a38d5a04b0
This commit is contained in:
Nikolay Pultsin 2007-12-12 05:02:22 +00:00
parent 065fbdf465
commit 9915b3800f
3 changed files with 11 additions and 20 deletions

View file

@ -1,13 +1,4 @@
package org.zlibrary.text.model.entry;
public interface ZLTextParagraphEntry {
enum Kind {
TEXT_ENTRY,
IMAGE_ENTRY,
CONTROL_ENTRY,
HYPERLINK_CONTROL_ENTRY,
FORCED_CONTROL_ENTRY,
FIXED_HSPACE_ENTRY
};
}

View file

@ -20,7 +20,7 @@ class ZLTextTreeParagraphImpl extends ZLTextParagraphImpl implements ZLTextTreeP
}
}
public Kind kind() {
public Kind getKind() {
return Kind.TREE_PARAGRAPH;
}