Package com.rometools.rome.feed.impl

Examples of com.rometools.rome.feed.impl.ObjectBean


     * Default constructor. All properties are set to <b>null</b>.
     * <p>
     *
     */
    public Content() {
        objBean = new ObjectBean(this.getClass(), this);
    }
View Full Code Here


     * <p>
     *
     */
    public DCModuleImpl() {
        super(DCModule.class, URI);
        objBean = new ObjectBean(DCModule.class, this, CONVENIENCE_PROPERTIES);
    }
View Full Code Here

     * Default constructor. All properties are set to <b>null</b>.
     * <p>
     *
     */
    public Description() {
        objBean = new ObjectBean(this.getClass(), this);
    }
View Full Code Here

     * Default constructor. All properties are set to <b>null</b>.
     * <p>
     *
     */
    public DCSubjectImpl() {
        objBean = new ObjectBean(this.getClass(), this);
    }
View Full Code Here

    /**
     * For implementations extending SyndContentImpl to be able to use the ObjectBean functionality
     * with extended interfaces.
     */
    public SyndPersonImpl() {
        objBean = new ObjectBean(SyndPerson.class, this);
    }
View Full Code Here

     *
     * @param uri URI of the module.
     *
     */
    protected ModuleImpl(final Class<?> beanClass, final String uri) {
        objBean = new ObjectBean(beanClass, this);
        this.uri = uri;
    }
View Full Code Here

     * Default constructor. All properties are set to <b>null</b>.
     * <p>
     *
     */
    public SyndLinkImpl() {
        objBean = new ObjectBean(this.getClass(), this);
    }
View Full Code Here

     * @param convenienceProperties set containing the convenience properties of the SyndEntryImpl
     *            (the are ignored during cloning, check CloneableBean for details).
     *
     */
    protected SyndFeedImpl(final Class<?> beanClass, final Set<String> convenienceProperties) {
        objBean = new ObjectBean(beanClass, this, convenienceProperties);
    }
View Full Code Here

TOP

Related Classes of com.rometools.rome.feed.impl.ObjectBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.