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 SyndImageImpl() {
        objBean = new ObjectBean(SyndImage.class, this);
    }
View Full Code Here


     * <p>
     *
     * @param subject the DC subject to wrap.
     */
    SyndCategoryImpl(final DCSubject subject) {
        objBean = new ObjectBean(SyndCategory.class, this);
        this.subject = subject;
    }
View Full Code Here

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

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

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

    /**
     * Default constructor, for bean cloning purposes only.
     */
    protected WireFeed() {
        objBean = new ObjectBean(this.getClass(), this);
    }
View Full Code Here

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

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

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

     * Default constructor. All properties are set to <b>null</b>.
     * <p>
     *
     */
    public Cloud() {
        objBean = new ObjectBean(this.getClass(), this);
    }
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.