Author: marvin
Date: Wed May 16 23:21:56 2012
New Revision: 1339421
URL: http://svn.apache.org/viewvc?rev=1339421&view=rev
Log:
Mark many classes as "public".
Mark all classes which are already exposed via public documentation in
the Perl distro as "public".
Modified:
lucy/trunk/core/Lucy/Analysis/Analyzer.cfh
lucy/trunk/core/Lucy/Analysis/CaseFolder.cfh
lucy/trunk/core/Lucy/Analysis/EasyAnalyzer.cfh
lucy/trunk/core/Lucy/Analysis/Normalizer.cfh
lucy/trunk/core/Lucy/Analysis/PolyAnalyzer.cfh
lucy/trunk/core/Lucy/Analysis/RegexTokenizer.cfh
lucy/trunk/core/Lucy/Analysis/SnowballStemmer.cfh
lucy/trunk/core/Lucy/Analysis/SnowballStopFilter.cfh
lucy/trunk/core/Lucy/Analysis/StandardTokenizer.cfh
lucy/trunk/core/Lucy/Document/HitDoc.cfh
lucy/trunk/core/Lucy/Highlight/Highlighter.cfh
lucy/trunk/core/Lucy/Index/BackgroundMerger.cfh
lucy/trunk/core/Lucy/Index/DataReader.cfh
lucy/trunk/core/Lucy/Index/DeletionsWriter.cfh
lucy/trunk/core/Lucy/Index/DocReader.cfh
lucy/trunk/core/Lucy/Index/IndexManager.cfh
lucy/trunk/core/Lucy/Index/IndexReader.cfh
lucy/trunk/core/Lucy/Index/Indexer.cfh
lucy/trunk/core/Lucy/Index/Lexicon.cfh
lucy/trunk/core/Lucy/Index/LexiconReader.cfh
lucy/trunk/core/Lucy/Index/PolyReader.cfh
lucy/trunk/core/Lucy/Index/PostingList.cfh
lucy/trunk/core/Lucy/Index/PostingListReader.cfh
lucy/trunk/core/Lucy/Index/SegReader.cfh
lucy/trunk/core/Lucy/Index/SegWriter.cfh
lucy/trunk/core/Lucy/Index/Segment.cfh
lucy/trunk/core/Lucy/Index/Similarity.cfh
lucy/trunk/core/Lucy/Index/Snapshot.cfh
lucy/trunk/core/Lucy/Object/BitVector.cfh
lucy/trunk/core/Lucy/Object/Err.cfh
lucy/trunk/core/Lucy/Object/Obj.cfh
lucy/trunk/core/Lucy/Plan/Architecture.cfh
lucy/trunk/core/Lucy/Plan/BlobType.cfh
lucy/trunk/core/Lucy/Plan/FieldType.cfh
lucy/trunk/core/Lucy/Plan/FullTextType.cfh
lucy/trunk/core/Lucy/Plan/Schema.cfh
lucy/trunk/core/Lucy/Plan/StringType.cfh
lucy/trunk/core/Lucy/Search/ANDQuery.cfh
lucy/trunk/core/Lucy/Search/Collector.cfh
lucy/trunk/core/Lucy/Search/Compiler.cfh
lucy/trunk/core/Lucy/Search/Hits.cfh
lucy/trunk/core/Lucy/Search/IndexSearcher.cfh
lucy/trunk/core/Lucy/Search/LeafQuery.cfh
lucy/trunk/core/Lucy/Search/MatchAllQuery.cfh
lucy/trunk/core/Lucy/Search/Matcher.cfh
lucy/trunk/core/Lucy/Search/NOTQuery.cfh
lucy/trunk/core/Lucy/Search/NoMatchQuery.cfh
lucy/trunk/core/Lucy/Search/ORQuery.cfh
lucy/trunk/core/Lucy/Search/PhraseQuery.cfh
lucy/trunk/core/Lucy/Search/PolyQuery.cfh
lucy/trunk/core/Lucy/Search/PolySearcher.cfh
lucy/trunk/core/Lucy/Search/Query.cfh
lucy/trunk/core/Lucy/Search/QueryParser.cfh
lucy/trunk/core/Lucy/Search/RangeQuery.cfh
lucy/trunk/core/Lucy/Search/RequiredOptionalQuery.cfh
lucy/trunk/core/Lucy/Search/Searcher.cfh
lucy/trunk/core/Lucy/Search/SortRule.cfh
lucy/trunk/core/Lucy/Search/SortSpec.cfh
lucy/trunk/core/Lucy/Search/Span.cfh
lucy/trunk/core/Lucy/Search/TermQuery.cfh
lucy/trunk/core/Lucy/Store/FSFolder.cfh
lucy/trunk/core/Lucy/Store/Folder.cfh
lucy/trunk/core/Lucy/Store/Lock.cfh
lucy/trunk/core/Lucy/Store/LockFactory.cfh
lucy/trunk/core/Lucy/Store/RAMFolder.cfh
lucy/trunk/core/LucyX/Search/ProximityQuery.cfh
Modified: lucy/trunk/core/Lucy/Analysis/Analyzer.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Analysis/Analyzer.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Analysis/Analyzer.cfh (original)
+++ lucy/trunk/core/Lucy/Analysis/Analyzer.cfh Wed May 16 23:21:56 2012
@@ -24,7 +24,7 @@ parcel Lucy;
* might perform case folding to facilitate case-insensitive search
* (L<Normalizer|Lucy::Analysis::Normalizer>).
*/
-abstract class Lucy::Analysis::Analyzer
+public abstract class Lucy::Analysis::Analyzer
inherits Lucy::Object::Obj : dumpable {
public inert Analyzer*
Modified: lucy/trunk/core/Lucy/Analysis/CaseFolder.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Analysis/CaseFolder.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Analysis/CaseFolder.cfh (original)
+++ lucy/trunk/core/Lucy/Analysis/CaseFolder.cfh Wed May 16 23:21:56 2012
@@ -25,7 +25,7 @@ parcel Lucy;
* searches will be case-insensitive.
*/
-class Lucy::Analysis::CaseFolder
+public class Lucy::Analysis::CaseFolder
inherits Lucy::Analysis::Analyzer : dumpable {
Normalizer *normalizer;
Modified: lucy/trunk/core/Lucy/Analysis/EasyAnalyzer.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Analysis/EasyAnalyzer.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Analysis/EasyAnalyzer.cfh (original)
+++ lucy/trunk/core/Lucy/Analysis/EasyAnalyzer.cfh Wed May 16 23:21:56 2012
@@ -41,7 +41,7 @@ parcel Lucy;
* sv => Swedish,
* tr => Turkish,
*/
-class Lucy::Analysis::EasyAnalyzer
+public class Lucy::Analysis::EasyAnalyzer
inherits Lucy::Analysis::Analyzer : dumpable {
CharBuf *language;
Modified: lucy/trunk/core/Lucy/Analysis/Normalizer.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Analysis/Normalizer.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Analysis/Normalizer.cfh (original)
+++ lucy/trunk/core/Lucy/Analysis/Normalizer.cfh Wed May 16 23:21:56 2012
@@ -27,7 +27,7 @@ parcel Lucy;
* because it might add or remove characters.
*/
-class Lucy::Analysis::Normalizer
+public class Lucy::Analysis::Normalizer
inherits Lucy::Analysis::Analyzer : dumpable {
int options;
Modified: lucy/trunk/core/Lucy/Analysis/PolyAnalyzer.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Analysis/PolyAnalyzer.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Analysis/PolyAnalyzer.cfh (original)
+++ lucy/trunk/core/Lucy/Analysis/PolyAnalyzer.cfh Wed May 16 23:21:56 2012
@@ -47,7 +47,7 @@ parcel Lucy;
* sv => Swedish,
* tr => Turkish,
*/
-class Lucy::Analysis::PolyAnalyzer
+public class Lucy::Analysis::PolyAnalyzer
inherits Lucy::Analysis::Analyzer : dumpable {
VArray *analyzers;
Modified: lucy/trunk/core/Lucy/Analysis/RegexTokenizer.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Analysis/RegexTokenizer.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Analysis/RegexTokenizer.cfh (original)
+++ lucy/trunk/core/Lucy/Analysis/RegexTokenizer.cfh Wed May 16 23:21:56 2012
@@ -47,7 +47,7 @@ parcel Lucy;
* ... the difference being that the word character tokenizer skips over
* punctuation as well as whitespace when determining token boundaries.
*/
-class Lucy::Analysis::RegexTokenizer
+public class Lucy::Analysis::RegexTokenizer
inherits Lucy::Analysis::Analyzer {
CharBuf *pattern;
Modified: lucy/trunk/core/Lucy/Analysis/SnowballStemmer.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Analysis/SnowballStemmer.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Analysis/SnowballStemmer.cfh (original)
+++ lucy/trunk/core/Lucy/Analysis/SnowballStemmer.cfh Wed May 16 23:21:56 2012
@@ -25,7 +25,7 @@ parcel Lucy;
* 'horsing'.
*/
-class Lucy::Analysis::SnowballStemmer cnick SnowStemmer
+public class Lucy::Analysis::SnowballStemmer cnick SnowStemmer
inherits Lucy::Analysis::Analyzer : dumpable {
void *snowstemmer;
Modified: lucy/trunk/core/Lucy/Analysis/SnowballStopFilter.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Analysis/SnowballStopFilter.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Analysis/SnowballStopFilter.cfh (original)
+++ lucy/trunk/core/Lucy/Analysis/SnowballStopFilter.cfh Wed May 16 23:21:56
2012
@@ -54,7 +54,7 @@ parcel Lucy;
* |-----------------------|
*/
-class Lucy::Analysis::SnowballStopFilter cnick SnowStop
+public class Lucy::Analysis::SnowballStopFilter cnick SnowStop
inherits Lucy::Analysis::Analyzer : dumpable {
Hash *stoplist;
Modified: lucy/trunk/core/Lucy/Analysis/StandardTokenizer.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Analysis/StandardTokenizer.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Analysis/StandardTokenizer.cfh (original)
+++ lucy/trunk/core/Lucy/Analysis/StandardTokenizer.cfh Wed May 16 23:21:56 2012
@@ -26,7 +26,7 @@ parcel Lucy;
* boundaries defined in Unicode Standard Annex #29. It then returns those
* words that start with an alphabetic or numeric character.
*/
-class Lucy::Analysis::StandardTokenizer
+public class Lucy::Analysis::StandardTokenizer
inherits Lucy::Analysis::Analyzer {
inert incremented StandardTokenizer*
Modified: lucy/trunk/core/Lucy/Document/HitDoc.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Document/HitDoc.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Document/HitDoc.cfh (original)
+++ lucy/trunk/core/Lucy/Document/HitDoc.cfh Wed May 16 23:21:56 2012
@@ -23,7 +23,7 @@ parcel Lucy;
* augmented by a numeric score attribute that Doc doesn't have.
*/
-class Lucy::Document::HitDoc inherits Lucy::Document::Doc {
+public class Lucy::Document::HitDoc inherits Lucy::Document::Doc {
float score;
Modified: lucy/trunk/core/Lucy/Highlight/Highlighter.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Highlight/Highlighter.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Highlight/Highlighter.cfh (original)
+++ lucy/trunk/core/Lucy/Highlight/Highlighter.cfh Wed May 16 23:21:56 2012
@@ -23,7 +23,7 @@ parcel Lucy;
* and phrases correctly and efficiently, using special-purpose data generated
* at index-time.
*/
-class Lucy::Highlight::Highlighter inherits Lucy::Object::Obj {
+public class Lucy::Highlight::Highlighter inherits Lucy::Object::Obj {
Searcher *searcher;
Query *query;
Modified: lucy/trunk/core/Lucy/Index/BackgroundMerger.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/BackgroundMerger.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/BackgroundMerger.cfh (original)
+++ lucy/trunk/core/Lucy/Index/BackgroundMerger.cfh Wed May 16 23:21:56 2012
@@ -26,7 +26,7 @@ parcel Lucy;
* As with L<Indexer|Lucy::Index::Indexer>, see
* L<Lucy::Docs::FileLocking> if your index is on a shared volume.
*/
-class Lucy::Index::BackgroundMerger cnick BGMerger
+public class Lucy::Index::BackgroundMerger cnick BGMerger
inherits Lucy::Object::Obj {
Schema *schema;
Modified: lucy/trunk/core/Lucy/Index/DataReader.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/DataReader.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/DataReader.cfh (original)
+++ lucy/trunk/core/Lucy/Index/DataReader.cfh Wed May 16 23:21:56 2012
@@ -23,7 +23,7 @@ parcel Lucy;
* implement one of each.
*/
-class Lucy::Index::DataReader inherits Lucy::Object::Obj {
+public class Lucy::Index::DataReader inherits Lucy::Object::Obj {
Schema *schema;
Folder *folder;
Modified: lucy/trunk/core/Lucy/Index/DeletionsWriter.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/DeletionsWriter.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/DeletionsWriter.cfh (original)
+++ lucy/trunk/core/Lucy/Index/DeletionsWriter.cfh Wed May 16 23:21:56 2012
@@ -31,7 +31,7 @@ parcel Lucy;
* merged into new ones.
*/
-abstract class Lucy::Index::DeletionsWriter cnick DelWriter
+public abstract class Lucy::Index::DeletionsWriter cnick DelWriter
inherits Lucy::Index::DataWriter {
inert DeletionsWriter*
Modified: lucy/trunk/core/Lucy/Index/DocReader.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/DocReader.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/DocReader.cfh (original)
+++ lucy/trunk/core/Lucy/Index/DocReader.cfh Wed May 16 23:21:56 2012
@@ -22,7 +22,7 @@ parcel Lucy;
* are retrieved from the index. The default implementation returns
* L<HitDoc|Lucy::Document::HitDoc> objects.
*/
-class Lucy::Index::DocReader inherits Lucy::Index::DataReader {
+public class Lucy::Index::DocReader inherits Lucy::Index::DataReader {
inert DocReader*
init(DocReader *self, Schema *schema = NULL, Folder *folder = NULL,
Modified: lucy/trunk/core/Lucy/Index/IndexManager.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/IndexManager.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/IndexManager.cfh (original)
+++ lucy/trunk/core/Lucy/Index/IndexManager.cfh Wed May 16 23:21:56 2012
@@ -26,7 +26,7 @@ parcel Lucy;
* which cannot change for the life of an index; IndexManager is used for
* defining rules which may change from process to process.
*/
-class Lucy::Index::IndexManager cnick IxManager
+public class Lucy::Index::IndexManager cnick IxManager
inherits Lucy::Object::Obj {
Folder *folder;
Modified: lucy/trunk/core/Lucy/Index/IndexReader.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/IndexReader.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/IndexReader.cfh (original)
+++ lucy/trunk/core/Lucy/Index/IndexReader.cfh Wed May 16 23:21:56 2012
@@ -34,7 +34,7 @@ parcel Lucy;
* L<SegReader|Lucy::Index::SegReader>'s sub-components.
*/
-class Lucy::Index::IndexReader cnick IxReader
+public class Lucy::Index::IndexReader cnick IxReader
inherits Lucy::Index::DataReader {
Hash *components;
Modified: lucy/trunk/core/Lucy/Index/Indexer.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/Indexer.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/Indexer.cfh (original)
+++ lucy/trunk/core/Lucy/Index/Indexer.cfh Wed May 16 23:21:56 2012
@@ -36,7 +36,7 @@ parcel Lucy;
* documents added this indexing session but not yet committed. This may
* change in a future update.
*/
-class Lucy::Index::Indexer inherits Lucy::Object::Obj {
+public class Lucy::Index::Indexer inherits Lucy::Object::Obj {
Schema *schema;
Folder *folder;
Modified: lucy/trunk/core/Lucy/Index/Lexicon.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/Lexicon.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/Lexicon.cfh (original)
+++ lucy/trunk/core/Lucy/Index/Lexicon.cfh Wed May 16 23:21:56 2012
@@ -31,7 +31,7 @@ parcel Lucy;
* three
*/
-class Lucy::Index::Lexicon cnick Lex inherits Lucy::Object::Obj {
+public class Lucy::Index::Lexicon cnick Lex inherits Lucy::Object::Obj {
CharBuf *field;
Modified: lucy/trunk/core/Lucy/Index/LexiconReader.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/LexiconReader.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/LexiconReader.cfh (original)
+++ lucy/trunk/core/Lucy/Index/LexiconReader.cfh Wed May 16 23:21:56 2012
@@ -20,7 +20,7 @@ parcel Lucy;
*
* LexiconReader reads term dictionary information.
*/
-abstract class Lucy::Index::LexiconReader cnick LexReader
+public abstract class Lucy::Index::LexiconReader cnick LexReader
inherits Lucy::Index::DataReader {
inert LexiconReader*
Modified: lucy/trunk/core/Lucy/Index/PolyReader.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/PolyReader.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/PolyReader.cfh (original)
+++ lucy/trunk/core/Lucy/Index/PolyReader.cfh Wed May 16 23:21:56 2012
@@ -26,7 +26,7 @@ parcel Lucy;
* may be less efficient or complete than the single-segment implementations
* accessed via L<SegReader|Lucy::Index::SegReader>.
*/
-class Lucy::Index::PolyReader inherits Lucy::Index::IndexReader {
+public class Lucy::Index::PolyReader inherits Lucy::Index::IndexReader {
VArray *sub_readers;
int32_t doc_max;
Modified: lucy/trunk/core/Lucy/Index/PostingList.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/PostingList.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/PostingList.cfh (original)
+++ lucy/trunk/core/Lucy/Index/PostingList.cfh Wed May 16 23:21:56 2012
@@ -24,7 +24,7 @@ parcel Lucy;
* See L<Lucy::Docs::IRTheory> for definitions of "posting" and "posting
* list".
*/
-class Lucy::Index::PostingList cnick PList
+public class Lucy::Index::PostingList cnick PList
inherits Lucy::Search::Matcher {
public inert PostingList*
Modified: lucy/trunk/core/Lucy/Index/PostingListReader.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/PostingListReader.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/PostingListReader.cfh (original)
+++ lucy/trunk/core/Lucy/Index/PostingListReader.cfh Wed May 16 23:21:56 2012
@@ -21,7 +21,7 @@ parcel Lucy;
* PostingListReaders produce L<PostingList|Lucy::Index::PostingList>
* objects which convey document matching information.
*/
-class Lucy::Index::PostingListReader cnick PListReader
+public class Lucy::Index::PostingListReader cnick PListReader
inherits Lucy::Index::DataReader {
inert PostingListReader*
Modified: lucy/trunk/core/Lucy/Index/SegReader.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/SegReader.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/SegReader.cfh (original)
+++ lucy/trunk/core/Lucy/Index/SegReader.cfh Wed May 16 23:21:56 2012
@@ -28,7 +28,7 @@ parcel Lucy;
* factory methods.
*/
-class Lucy::Index::SegReader inherits Lucy::Index::IndexReader {
+public class Lucy::Index::SegReader inherits Lucy::Index::IndexReader {
int32_t doc_max;
int32_t del_count;
Modified: lucy/trunk/core/Lucy/Index/SegWriter.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/SegWriter.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/SegWriter.cfh (original)
+++ lucy/trunk/core/Lucy/Index/SegWriter.cfh Wed May 16 23:21:56 2012
@@ -31,7 +31,7 @@ parcel Lucy;
* Add_Inverted_Doc() invoked for each document supplied to SegWriter's
* Add_Doc().
*/
-class Lucy::Index::SegWriter inherits Lucy::Index::DataWriter {
+public class Lucy::Index::SegWriter inherits Lucy::Index::DataWriter {
Inverter *inverter;
VArray *writers;
Modified: lucy/trunk/core/Lucy/Index/Segment.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/Segment.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/Segment.cfh (original)
+++ lucy/trunk/core/Lucy/Index/Segment.cfh Wed May 16 23:21:56 2012
@@ -31,7 +31,7 @@ parcel Lucy;
* storing metadata themselves.
*/
-class Lucy::Index::Segment cnick Seg inherits Lucy::Object::Obj {
+public class Lucy::Index::Segment cnick Seg inherits Lucy::Object::Obj {
CharBuf *name;
int64_t count;
Modified: lucy/trunk/core/Lucy/Index/Similarity.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/Similarity.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/Similarity.cfh (original)
+++ lucy/trunk/core/Lucy/Index/Similarity.cfh Wed May 16 23:21:56 2012
@@ -33,7 +33,7 @@ parcel Lucy;
* scores from multiple fields.
*/
-class Lucy::Index::Similarity cnick Sim
+public class Lucy::Index::Similarity cnick Sim
inherits Lucy::Object::Obj : dumpable {
float *norm_decoder;
Modified: lucy/trunk/core/Lucy/Index/Snapshot.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Index/Snapshot.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Index/Snapshot.cfh (original)
+++ lucy/trunk/core/Lucy/Index/Snapshot.cfh Wed May 16 23:21:56 2012
@@ -26,7 +26,7 @@ parcel Lucy;
* associated with a single Snapshot.
*/
-class Lucy::Index::Snapshot inherits Lucy::Object::Obj : dumpable {
+public class Lucy::Index::Snapshot inherits Lucy::Object::Obj : dumpable {
Hash *entries;
CharBuf *path;
Modified: lucy/trunk/core/Lucy/Object/BitVector.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Object/BitVector.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Object/BitVector.cfh (original)
+++ lucy/trunk/core/Lucy/Object/BitVector.cfh Wed May 16 23:21:56 2012
@@ -21,7 +21,7 @@ parcel Lucy;
* BitVector is a growable array of bits. All bits are initially zero.
*/
-class Lucy::Object::BitVector cnick BitVec
+public class Lucy::Object::BitVector cnick BitVec
inherits Lucy::Object::Obj {
uint32_t cap;
Modified: lucy/trunk/core/Lucy/Object/Err.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Object/Err.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Object/Err.cfh (original)
+++ lucy/trunk/core/Lucy/Object/Err.cfh Wed May 16 23:21:56 2012
@@ -42,7 +42,7 @@ __END_C__
* temporarily, so that calling code may choose how to handle a particular
* error condition.
*/
-class Lucy::Object::Err inherits Lucy::Object::Obj {
+public class Lucy::Object::Err inherits Lucy::Object::Obj {
CharBuf *mess;
Modified: lucy/trunk/core/Lucy/Object/Obj.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Object/Obj.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Object/Obj.cfh (original)
+++ lucy/trunk/core/Lucy/Object/Obj.cfh Wed May 16 23:21:56 2012
@@ -19,7 +19,7 @@ parcel Lucy;
/** Base class for all Lucy objects.
*/
-class Lucy::Object::Obj {
+public class Lucy::Object::Obj {
VTable *vtable;
lucy_ref_t ref;
Modified: lucy/trunk/core/Lucy/Plan/Architecture.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Plan/Architecture.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Plan/Architecture.cfh (original)
+++ lucy/trunk/core/Lucy/Plan/Architecture.cfh Wed May 16 23:21:56 2012
@@ -25,7 +25,7 @@ parcel Lucy;
* L<SegWriter|Lucy::Index::SegWriter> and
* L<SegReader|Lucy::Index::SegReader>.
*/
-class Lucy::Plan::Architecture cnick Arch inherits Lucy::Object::Obj {
+public class Lucy::Plan::Architecture cnick Arch inherits Lucy::Object::Obj {
public inert incremented Architecture*
new();
Modified: lucy/trunk/core/Lucy/Plan/BlobType.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Plan/BlobType.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Plan/BlobType.cfh (original)
+++ lucy/trunk/core/Lucy/Plan/BlobType.cfh Wed May 16 23:21:56 2012
@@ -21,7 +21,7 @@ parcel Lucy;
* BlobType is an implementation of FieldType tuned for use with fields
* containing binary data, which cannot be indexed or searched -- only stored.
*/
-class Lucy::Plan::BlobType inherits Lucy::Plan::FieldType
+public class Lucy::Plan::BlobType inherits Lucy::Plan::FieldType
: dumpable {
/**
Modified: lucy/trunk/core/Lucy/Plan/FieldType.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Plan/FieldType.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Plan/FieldType.cfh (original)
+++ lucy/trunk/core/Lucy/Plan/FieldType.cfh Wed May 16 23:21:56 2012
@@ -69,7 +69,7 @@ __END_C__
* and scoring behavior for the field. It is required if the field is
* <code>indexed</code>.
*/
-abstract class Lucy::Plan::FieldType cnick FType
+public abstract class Lucy::Plan::FieldType cnick FType
inherits Lucy::Object::Obj {
float boost;
Modified: lucy/trunk/core/Lucy/Plan/FullTextType.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Plan/FullTextType.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Plan/FullTextType.cfh (original)
+++ lucy/trunk/core/Lucy/Plan/FullTextType.cfh Wed May 16 23:21:56 2012
@@ -28,7 +28,7 @@ parcel Lucy;
* For an exact-match, single value field type using character data, see
* L<StringType|Lucy::Plan::StringType>.
*/
-class Lucy::Plan::FullTextType
+public class Lucy::Plan::FullTextType
inherits Lucy::Plan::TextType : dumpable {
bool_t highlightable;
Modified: lucy/trunk/core/Lucy/Plan/Schema.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Plan/Schema.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Plan/Schema.cfh (original)
+++ lucy/trunk/core/Lucy/Plan/Schema.cfh Wed May 16 23:21:56 2012
@@ -25,7 +25,7 @@ parcel Lucy;
* field definitions may not be changed. However, it is possible to add new
* fields during subsequent indexing sessions.
*/
-class Lucy::Plan::Schema inherits Lucy::Object::Obj {
+public class Lucy::Plan::Schema inherits Lucy::Object::Obj {
Architecture *arch;
Similarity *sim;
Modified: lucy/trunk/core/Lucy/Plan/StringType.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Plan/StringType.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Plan/StringType.cfh (original)
+++ lucy/trunk/core/Lucy/Plan/StringType.cfh Wed May 16 23:21:56 2012
@@ -20,7 +20,7 @@ parcel Lucy;
*
* Lucy::Plan::StringType is used for "exact-match" strings.
*/
-class Lucy::Plan::StringType
+public class Lucy::Plan::StringType
inherits Lucy::Plan::TextType : dumpable {
/**
Modified: lucy/trunk/core/Lucy/Search/ANDQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/ANDQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/ANDQuery.cfh (original)
+++ lucy/trunk/core/Lucy/Search/ANDQuery.cfh Wed May 16 23:21:56 2012
@@ -22,7 +22,7 @@ parcel Lucy;
* only when all of its children match, so its result set is the intersection
* of their result sets. Documents which match receive a summed score.
*/
-class Lucy::Search::ANDQuery inherits Lucy::Search::PolyQuery
+public class Lucy::Search::ANDQuery inherits Lucy::Search::PolyQuery
: dumpable {
inert incremented ANDQuery*
Modified: lucy/trunk/core/Lucy/Search/Collector.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/Collector.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/Collector.cfh (original)
+++ lucy/trunk/core/Lucy/Search/Collector.cfh Wed May 16 23:21:56 2012
@@ -28,7 +28,7 @@ parcel Lucy;
* collector must take the updated information into account.
*/
-abstract class Lucy::Search::Collector cnick Coll
+public abstract class Lucy::Search::Collector cnick Coll
inherits Lucy::Object::Obj {
SegReader *reader;
@@ -80,7 +80,7 @@ abstract class Lucy::Search::Collector c
* L<BitVector|Lucy::Object::BitVector>. It is useful for recording the
* entire set of documents which matches a query.
*/
-class Lucy::Search::Collector::BitCollector cnick BitColl
+public class Lucy::Search::Collector::BitCollector cnick BitColl
inherits Lucy::Search::Collector {
BitVector *bit_vec;
Modified: lucy/trunk/core/Lucy/Search/Compiler.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/Compiler.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/Compiler.cfh (original)
+++ lucy/trunk/core/Lucy/Search/Compiler.cfh Wed May 16 23:21:56 2012
@@ -57,7 +57,7 @@ parcel Lucy;
* the Matchers's constructor, or whether Make_Matcher() should return a
* Matcher at all.
*/
-class Lucy::Search::Compiler inherits Lucy::Search::Query {
+public class Lucy::Search::Compiler inherits Lucy::Search::Query {
Query *parent;
Similarity *sim;
Modified: lucy/trunk/core/Lucy/Search/Hits.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/Hits.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/Hits.cfh (original)
+++ lucy/trunk/core/Lucy/Search/Hits.cfh Wed May 16 23:21:56 2012
@@ -20,7 +20,7 @@ parcel Lucy;
*
* Hits objects are iterators used to access the results of a search.
*/
-class Lucy::Search::Hits inherits Lucy::Object::Obj {
+public class Lucy::Search::Hits inherits Lucy::Object::Obj {
Searcher *searcher;
TopDocs *top_docs;
Modified: lucy/trunk/core/Lucy/Search/IndexSearcher.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/IndexSearcher.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/IndexSearcher.cfh (original)
+++ lucy/trunk/core/Lucy/Search/IndexSearcher.cfh Wed May 16 23:21:56 2012
@@ -26,7 +26,7 @@ parcel Lucy;
* L<Snapshot|Lucy::Index::Snapshot> of the index. If an index is
* modified, a new IndexSearcher must be opened to access the changes.
*/
-class Lucy::Search::IndexSearcher cnick IxSearcher
+public class Lucy::Search::IndexSearcher cnick IxSearcher
inherits Lucy::Search::Searcher {
IndexReader *reader;
Modified: lucy/trunk/core/Lucy/Search/LeafQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/LeafQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/LeafQuery.cfh (original)
+++ lucy/trunk/core/Lucy/Search/LeafQuery.cfh Wed May 16 23:21:56 2012
@@ -25,7 +25,7 @@ parcel Lucy;
* L<PhraseQuery|Lucy::Search::PhraseQuery> objects, as attempting to
* search a LeafQuery causes an error.
*/
-class Lucy::Search::LeafQuery inherits Lucy::Search::Query
+public class Lucy::Search::LeafQuery inherits Lucy::Search::Query
: dumpable {
CharBuf *field;
Modified: lucy/trunk/core/Lucy/Search/MatchAllQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/MatchAllQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/MatchAllQuery.cfh (original)
+++ lucy/trunk/core/Lucy/Search/MatchAllQuery.cfh Wed May 16 23:21:56 2012
@@ -23,7 +23,7 @@ parcel Lucy;
* which matches against another part of the query will be ranked higher than
* a document which matches only via the MatchAllQuery.
*/
-abstract class Lucy::Search::MatchAllQuery
+public abstract class Lucy::Search::MatchAllQuery
inherits Lucy::Search::Query : dumpable {
inert incremented MatchAllQuery*
Modified: lucy/trunk/core/Lucy/Search/Matcher.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/Matcher.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/Matcher.cfh (original)
+++ lucy/trunk/core/Lucy/Search/Matcher.cfh Wed May 16 23:21:56 2012
@@ -23,7 +23,7 @@ parcel Lucy;
* match. Other implementations may be match-only.
*/
-abstract class Lucy::Search::Matcher inherits Lucy::Object::Obj {
+public abstract class Lucy::Search::Matcher inherits Lucy::Object::Obj {
/** Abstract constructor.
*/
Modified: lucy/trunk/core/Lucy/Search/NOTQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/NOTQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/NOTQuery.cfh (original)
+++ lucy/trunk/core/Lucy/Search/NOTQuery.cfh Wed May 16 23:21:56 2012
@@ -27,7 +27,7 @@ parcel Lucy;
* semantics.
*/
-class Lucy::Search::NOTQuery inherits Lucy::Search::PolyQuery
+public class Lucy::Search::NOTQuery inherits Lucy::Search::PolyQuery
: dumpable {
/**
Modified: lucy/trunk/core/Lucy/Search/NoMatchQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/NoMatchQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/NoMatchQuery.cfh (original)
+++ lucy/trunk/core/Lucy/Search/NoMatchQuery.cfh Wed May 16 23:21:56 2012
@@ -23,7 +23,7 @@ parcel Lucy;
* L<QueryParser|Lucy::Search::QueryParser> is asked to parse an empty
* string.
*/
-class Lucy::Search::NoMatchQuery inherits Lucy::Search::Query
+public class Lucy::Search::NoMatchQuery inherits Lucy::Search::Query
: dumpable {
bool_t fails_to_match;
Modified: lucy/trunk/core/Lucy/Search/ORQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/ORQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/ORQuery.cfh (original)
+++ lucy/trunk/core/Lucy/Search/ORQuery.cfh Wed May 16 23:21:56 2012
@@ -24,7 +24,7 @@ parcel Lucy;
* child Queries.
*/
-class Lucy::Search::ORQuery inherits Lucy::Search::PolyQuery
+public class Lucy::Search::ORQuery inherits Lucy::Search::PolyQuery
: dumpable {
inert incremented ORQuery*
Modified: lucy/trunk/core/Lucy/Search/PhraseQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/PhraseQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/PhraseQuery.cfh (original)
+++ lucy/trunk/core/Lucy/Search/PhraseQuery.cfh Wed May 16 23:21:56 2012
@@ -22,7 +22,7 @@ parcel Lucy;
* against an ordered sequence of terms.
*/
-class Lucy::Search::PhraseQuery inherits Lucy::Search::Query
+public class Lucy::Search::PhraseQuery inherits Lucy::Search::Query
: dumpable {
CharBuf *field;
Modified: lucy/trunk/core/Lucy/Search/PolyQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/PolyQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/PolyQuery.cfh (original)
+++ lucy/trunk/core/Lucy/Search/PolyQuery.cfh Wed May 16 23:21:56 2012
@@ -26,7 +26,7 @@ parcel Lucy;
* these classes may serve as nodes in composite Query with a tree structure
* which may be walked.
*/
-abstract class Lucy::Search::PolyQuery
+public abstract class Lucy::Search::PolyQuery
inherits Lucy::Search::Query : dumpable {
VArray *children;
Modified: lucy/trunk/core/Lucy/Search/PolySearcher.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/PolySearcher.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/PolySearcher.cfh (original)
+++ lucy/trunk/core/Lucy/Search/PolySearcher.cfh Wed May 16 23:21:56 2012
@@ -22,7 +22,7 @@ parcel Lucy;
* indexes on a single machine.
*/
-class Lucy::Search::PolySearcher
+public class Lucy::Search::PolySearcher
inherits Lucy::Search::Searcher {
VArray *searchers;
Modified: lucy/trunk/core/Lucy/Search/Query.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/Query.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/Query.cfh (original)
+++ lucy/trunk/core/Lucy/Search/Query.cfh Wed May 16 23:21:56 2012
@@ -34,7 +34,7 @@ parcel Lucy;
* can actually match and score documents.
*/
-class Lucy::Search::Query inherits Lucy::Object::Obj : dumpable {
+public class Lucy::Search::Query inherits Lucy::Object::Obj : dumpable {
float boost;
Modified: lucy/trunk/core/Lucy/Search/QueryParser.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/QueryParser.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/QueryParser.cfh (original)
+++ lucy/trunk/core/Lucy/Search/QueryParser.cfh Wed May 16 23:21:56 2012
@@ -40,7 +40,7 @@ parcel Lucy;
*
*
*/
-class Lucy::Search::QueryParser cnick QParser
+public class Lucy::Search::QueryParser cnick QParser
inherits Lucy::Object::Obj {
Schema *schema;
Modified: lucy/trunk/core/Lucy/Search/RangeQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/RangeQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/RangeQuery.cfh (original)
+++ lucy/trunk/core/Lucy/Search/RangeQuery.cfh Wed May 16 23:21:56 2012
@@ -22,7 +22,7 @@ parcel Lucy;
* within a given range.
*/
-class Lucy::Search::RangeQuery inherits Lucy::Search::Query
+public class Lucy::Search::RangeQuery inherits Lucy::Search::Query
: dumpable {
CharBuf *field;
Modified: lucy/trunk/core/Lucy/Search/RequiredOptionalQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/RequiredOptionalQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/RequiredOptionalQuery.cfh (original)
+++ lucy/trunk/core/Lucy/Search/RequiredOptionalQuery.cfh Wed May 16 23:21:56
2012
@@ -23,7 +23,7 @@ parcel Lucy;
* its score is passed along; when both match, the scores are summed.
*/
-class Lucy::Search::RequiredOptionalQuery cnick ReqOptQuery
+public class Lucy::Search::RequiredOptionalQuery cnick ReqOptQuery
inherits Lucy::Search::PolyQuery {
inert incremented RequiredOptionalQuery*
Modified: lucy/trunk/core/Lucy/Search/Searcher.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/Searcher.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/Searcher.cfh (original)
+++ lucy/trunk/core/Lucy/Search/Searcher.cfh Wed May 16 23:21:56 2012
@@ -23,7 +23,7 @@ parcel Lucy;
* L<Lucy::Search::PolySearcher>.
*/
-class Lucy::Search::Searcher inherits Lucy::Object::Obj {
+public class Lucy::Search::Searcher inherits Lucy::Object::Obj {
Schema *schema;
QueryParser *qparser;
Modified: lucy/trunk/core/Lucy/Search/SortRule.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/SortRule.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/SortRule.cfh (original)
+++ lucy/trunk/core/Lucy/Search/SortRule.cfh Wed May 16 23:21:56 2012
@@ -23,7 +23,7 @@ parcel Lucy;
* level of sorting. For example, sorting first by "category" then by score
* requires a SortSpec with two SortRule elements.
*/
-class Lucy::Search::SortRule inherits Lucy::Object::Obj {
+public class Lucy::Search::SortRule inherits Lucy::Object::Obj {
int32_t type;
CharBuf *field;
Modified: lucy/trunk/core/Lucy/Search/SortSpec.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/SortSpec.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/SortSpec.cfh (original)
+++ lucy/trunk/core/Lucy/Search/SortSpec.cfh Wed May 16 23:21:56 2012
@@ -28,7 +28,7 @@ parcel Lucy;
* sort-by-doc rule as the last SortRule.
*/
-class Lucy::Search::SortSpec inherits Lucy::Object::Obj {
+public class Lucy::Search::SortSpec inherits Lucy::Object::Obj {
VArray *rules;
Modified: lucy/trunk/core/Lucy/Search/Span.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/Span.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/Span.cfh (original)
+++ lucy/trunk/core/Lucy/Search/Span.cfh Wed May 16 23:21:56 2012
@@ -26,7 +26,7 @@ parcel Lucy;
* within an array of tokens, for example -- in which case the start and
* offset might be measured in token positions.
*/
-class Lucy::Search::Span inherits Lucy::Object::Obj {
+public class Lucy::Search::Span inherits Lucy::Object::Obj {
int32_t offset;
int32_t length;
Modified: lucy/trunk/core/Lucy/Search/TermQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Search/TermQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Search/TermQuery.cfh (original)
+++ lucy/trunk/core/Lucy/Search/TermQuery.cfh Wed May 16 23:21:56 2012
@@ -23,7 +23,7 @@ parcel Lucy;
* individual terms in a specific field.
*/
-class Lucy::Search::TermQuery inherits Lucy::Search::Query
+public class Lucy::Search::TermQuery inherits Lucy::Search::Query
: dumpable {
CharBuf *field;
Modified: lucy/trunk/core/Lucy/Store/FSFolder.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Store/FSFolder.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Store/FSFolder.cfh (original)
+++ lucy/trunk/core/Lucy/Store/FSFolder.cfh Wed May 16 23:21:56 2012
@@ -22,7 +22,7 @@ parcel Lucy;
* directory and multiple files.
*/
-class Lucy::Store::FSFolder inherits Lucy::Store::Folder {
+public class Lucy::Store::FSFolder inherits Lucy::Store::Folder {
inert incremented FSFolder*
new(const CharBuf *path);
Modified: lucy/trunk/core/Lucy/Store/Folder.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Store/Folder.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Store/Folder.cfh (original)
+++ lucy/trunk/core/Lucy/Store/Folder.cfh Wed May 16 23:21:56 2012
@@ -26,7 +26,7 @@ parcel Lucy;
* L<FSFolder|Lucy::Store::FSFolder>, represents a directory on
* the file system holding a collection of files.
*/
-abstract class Lucy::Store::Folder inherits Lucy::Object::Obj {
+public abstract class Lucy::Store::Folder inherits Lucy::Object::Obj {
CharBuf *path;
Hash *entries;
Modified: lucy/trunk/core/Lucy/Store/Lock.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Store/Lock.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Store/Lock.cfh (original)
+++ lucy/trunk/core/Lucy/Store/Lock.cfh Wed May 16 23:21:56 2012
@@ -27,7 +27,7 @@ parcel Lucy;
* help clear away stale locks.
*/
-abstract class Lucy::Store::Lock inherits Lucy::Object::Obj {
+public abstract class Lucy::Store::Lock inherits Lucy::Object::Obj {
Folder *folder;
CharBuf *name;
@@ -160,7 +160,7 @@ class Lucy::Store::LockFileLock cnick LF
* LockErr is a subclass of L<Err|Lucy::Object::Err> which indicates
* that a file locking problem occurred.
*/
-class Lucy::Store::LockErr inherits Lucy::Object::Err {
+public class Lucy::Store::LockErr inherits Lucy::Object::Err {
public inert incremented LockErr*
new(CharBuf *message);
Modified: lucy/trunk/core/Lucy/Store/LockFactory.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Store/LockFactory.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Store/LockFactory.cfh (original)
+++ lucy/trunk/core/Lucy/Store/LockFactory.cfh Wed May 16 23:21:56 2012
@@ -24,7 +24,7 @@ parcel Lucy;
* alternatives such as flock() are possible.
*/
-class Lucy::Store::LockFactory cnick LockFact
+public class Lucy::Store::LockFactory cnick LockFact
inherits Lucy::Object::Obj {
Folder *folder;
Modified: lucy/trunk/core/Lucy/Store/RAMFolder.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/Lucy/Store/RAMFolder.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/Lucy/Store/RAMFolder.cfh (original)
+++ lucy/trunk/core/Lucy/Store/RAMFolder.cfh Wed May 16 23:21:56 2012
@@ -22,7 +22,7 @@ parcel Lucy;
* L<Lucy::Store::Folder>, primarily used for testing and development.
*/
-class Lucy::Store::RAMFolder inherits Lucy::Store::Folder {
+public class Lucy::Store::RAMFolder inherits Lucy::Store::Folder {
inert incremented RAMFolder*
new(const CharBuf *path = NULL);
Modified: lucy/trunk/core/LucyX/Search/ProximityQuery.cfh
URL:
http://svn.apache.org/viewvc/lucy/trunk/core/LucyX/Search/ProximityQuery.cfh?rev=1339421&r1=1339420&r2=1339421&view=diff
==============================================================================
--- lucy/trunk/core/LucyX/Search/ProximityQuery.cfh (original)
+++ lucy/trunk/core/LucyX/Search/ProximityQuery.cfh Wed May 16 23:21:56 2012
@@ -22,7 +22,7 @@ parcel Lucy;
* against an ordered sequence of terms.
*/
-class LucyX::Search::ProximityQuery inherits Lucy::Search::Query
+public class LucyX::Search::ProximityQuery inherits Lucy::Search::Query
: dumpable {
CharBuf *field;