/* * Model.cs - Implementation of the "Introspector.Architecture" class model. * * Copyright (C) 2003 James Michael DuPont. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Thanks to Redland http://www.redland.opensource.ac.uk for the design interface. * */ namespace Introspector.Architecture { using System; using System.Net; using DotGNU.Rdf; public class Model : public RdfModel { Document mDocument; } // this is a node that is Part of a model, // it represents a selection in model of some object public class Object : public RdfNode { Model rModel; } public class Document { public void Save(uri filename) { // TODO } public void Load(uri filename) { // TODO } } public class View { } // a symbol is a visual representation on a View of an element from the Model public class Symbol { Model rView; Object rObj; } public class Controller { } }