Updated to worldwind release 20070817
[worldwind-tracker.git] / gov / nasa / worldwind / WWObjectImpl.java
blob3a0e3fb282763c31f7175a4c7f7668d9813830ad
1 /*
2 Copyright (C) 2001, 2006 United States Government
3 as represented by the Administrator of the
4 National Aeronautics and Space Administration.
5 All Rights Reserved.
6 */
7 package gov.nasa.worldwind;
9 import gov.nasa.worldwind.avlist.AVListImpl;
11 /**
12 * Implements <code>WWObject</code> functionality. Meant to be either subclassed or aggretated by classes implementing
13 * <code>WWObject</code>.
15 * @author Tom Gaskins
16 * @version $Id: WWObjectImpl.java 2422 2007-07-25 23:07:49Z tgaskins $
18 public class WWObjectImpl extends AVListImpl implements WWObject
20 /**
21 * Constructs a new <code>WWObjectImpl</code>.
23 public WWObjectImpl()
27 public WWObjectImpl(Object source)
29 super(source);