Worldwind public release 0.2.1
[worldwind-tracker.git] / gov / nasa / worldwind / WWObjectImpl.java
blob0a7d6137389a29bbc098e3e2aa722f0aaa74dc2c
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 /**
10 * Implements <code>WWObject</code> functionality. Meant to be either subclassed or aggretated by classes implementing
11 * <code>WWObject</code>.
13 * @author Tom Gaskins
14 * @version $Id: WWObjectImpl.java 1905 2007-05-30 01:02:43Z tgaskins $
16 public class WWObjectImpl extends AVListImpl implements WWObject
18 /**
19 * Constructs a new <code>WWObjectImpl</code>.
21 public WWObjectImpl()
25 public WWObjectImpl(Object source)
27 super(source);