Package org.eclipse.sapphire.samples.calendar.integrated.internal

Examples of org.eclipse.sapphire.samples.calendar.integrated.internal.CalendarResource


    @Override
    protected Element createModel()
    {
        this.modelCalendar = ICalendar.TYPE.instantiate( new RootXmlResource( new XmlEditorResourceStore( this, this.calendarSourceEditor ) ) );
        this.modelContacts = ContactRepository.TYPE.instantiate( new RootXmlResource( new XmlEditorResourceStore( this, this.contactsSourceEditor ) ) );
        this.modelCalendarIntegrated = org.eclipse.sapphire.samples.calendar.integrated.ICalendar.TYPE.instantiate( new CalendarResource( this.modelCalendar, this.modelContacts ) );
       
        return this.modelCalendarIntegrated;
    }
View Full Code Here


            = org.eclipse.sapphire.samples.calendar.ICalendar.TYPE.instantiate( file );
       
        final IFile contactsFile = file.getParent().getFile( new Path( "contacts.xml" ) );
        final ContactRepository contactsModel = ContactRepository.TYPE.instantiate( contactsFile );
       
        return new CalendarResource( calendarModel, contactsModel );
    }
View Full Code Here

TOP

Related Classes of org.eclipse.sapphire.samples.calendar.integrated.internal.CalendarResource

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.