Code Search for Developers
 
 
  

TreeContentUnitAux.java from Kneobase at Krugle


Show TreeContentUnitAux.java syntax highlighted

/*
 * Created on 07/12/2004
 *
 */
package com.kneobase.driver;

import com.kneobase.driver.content.ContentUnitAux;
import com.kneobase.driver.content.I_CompositeContent;
import com.kneobase.driver.content.I_TreeContentUnit;

/**
 * @author Ernesto De Santis
 *
 */
public class TreeContentUnitAux
    extends ContentUnitAux
    implements I_TreeContentUnit {

    private String path;
    private String absolutePath = "nopath";
    private char separatorChar = '/';

    public TreeContentUnitAux() {

    }

    /**
     * @param content
     */
    public TreeContentUnitAux(Object content) {
        super(content);
    }

    /**
     * @param content
     * @param parent
     */
    public TreeContentUnitAux(Object content, I_CompositeContent parent) {
        super(content, parent);
    }

    public TreeContentUnitAux(I_CompositeContent parent) {
        super(parent);
    }
    

    /**
     * @return
     */
    public String getAbsolutePath() {
        return absolutePath;
    }

    /**
     * @param string
     */
    public void setAbsolutePath(String string) {
        absolutePath = string;
    }

    public char separatorChar() {
        return separatorChar;
    }

    /**
     * @param c
     */
    public void setSeparatorChar(char c) {
        separatorChar = c;
    }

    public String getPath() {
        return path;
    }

    /**
     * @param string
     */
    public void setPath(String string) {
        path = string;
    }

}




See more files for this project here

Kneobase

Kneobase is an enterprise search engine, based upon the Lucene search engine and the Spring framework. It allows to perform full-text search across many different content sources. It is highly adaptable out-of-the-box and has a pluggable architecture.

Project homepage: http://sourceforge.net/projects/kneobase
Programming language(s): Java,XML
License: other

  archive/
    ContentFactoryTest.java
  category/
    CategoryElementTest.java
  condition/
    ComposedConditonTest.java
    NameConditionTest.java
    PathConditionTest.java
    SizeConditionTest.java
    TypeConditionTest.java
  content/
    CompositeContentAux.java
    ContentConfigurationAux.java
    ContentSourceAux.java
    ContentUnitAdapterAux.java
    ContentUnitAux.java
    SourceCriteriaTest.java
  documentbuilder/
    BasenameBuilderTest.java
    BodyBuilderTest.java
    CutBuilderTest.java
    FieldBuilderTest.java
    LinkBuilderTest.java
    MethodBuilderTest.java
    PathBuilderTest.java
  fs/
    FSRobotConfigurationTest.java
    FSRobotTest.java
  ftp/
    FtpClientTest.java
    FtpContentSourceTest.java
    TestPathComparison.java
  gzip/
    GZipAdapterTest.java
  iterator/
    KIteratorTest.java
  rdbms/
    condition/
      DBColumnEqualsTest.java
    DBContentSourceTest.java
    DBRobotConfigurationTest.java
    DBRobotTest.java
    ResultSetMock.java
    RowAdapterTest.java
  zip/
    ZipAdapterTest.java
  FileAdapterAux.java
  IndexDataAux.java
  RobotTest.java
  SettedBuilder.java
  SourceConfigurationTest.java
  SourceCriteriaAux.java
  TreeCompositeContentAux.java
  TreeContentSourceAux.java
  TreeContentUnitAux.java