KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > core > site > ExternalSiteModel


1 /*******************************************************************************
2  * Copyright (c) 2005, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.pde.internal.core.site;
12
13 import org.eclipse.core.runtime.CoreException;
14
15
16 public class ExternalSiteModel extends AbstractSiteModel {
17
18     private static final long serialVersionUID = 1L;
19
20     /* (non-Javadoc)
21      * @see org.eclipse.pde.internal.core.AbstractModel#updateTimeStamp()
22      */

23     protected void updateTimeStamp() {
24     }
25
26     /* (non-Javadoc)
27      * @see org.eclipse.pde.core.IModel#isInSync()
28      */

29     public boolean isInSync() {
30         return true;
31     }
32     
33     /* (non-Javadoc)
34      * @see org.eclipse.pde.internal.core.site.AbstractSiteModel#isEditable()
35      */

36     public boolean isEditable() {
37         return false;
38     }
39
40     /* (non-Javadoc)
41      * @see org.eclipse.pde.core.IModel#load()
42      */

43     public void load() throws CoreException {
44     }
45
46 }
47
Popular Tags