Author: spagop
Date: 2008-07-01 21:10:12 -0400 (Tue, 01 Jul 2008)
New Revision: 333
Removed:
trunk/sequencers/dna-sequencer-java/src/main/java/org/jboss/dna/sequencer/java/PackageMetadata.java
Log:
transfer PackageMetadata into another package "packagemetadata"
Deleted:
trunk/sequencers/dna-sequencer-java/src/main/java/org/jboss/dna/sequencer/java/PackageMetadata.java
===================================================================
---
trunk/sequencers/dna-sequencer-java/src/main/java/org/jboss/dna/sequencer/java/PackageMetadata.java 2008-07-02
01:08:05 UTC (rev 332)
+++
trunk/sequencers/dna-sequencer-java/src/main/java/org/jboss/dna/sequencer/java/PackageMetadata.java 2008-07-02
01:10:12 UTC (rev 333)
@@ -1,64 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2008, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This 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.1 of
- * the License, or (at your option) any later version.
- *
- * This software 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
- */
-package org.jboss.dna.sequencer.java;
-
-import java.util.List;
-import org.eclipse.jdt.core.dom.Annotation;
-import org.eclipse.jdt.core.dom.Javadoc;
-
-/**
- * Package meta data.
- *
- * @author Serge Pagop.
- */
-public class PackageMetadata {
- private Javadoc javadoc;
- private List<Annotation> annotations;
- private String name;
-
- public void setName( String name ) {
- this.name = name;
-
- }
-
- public String getName() {
- return this.name;
- }
-
- public void setAnnotations( List<Annotation> annotations ) {
- this.annotations = annotations;
- }
-
- public List<Annotation> getAnnotations() {
- return this.annotations;
- }
-
- public void setJavadoc( Javadoc javadoc ) {
- this.javadoc = javadoc;
-
- }
-
- public Javadoc getJavadoc() {
- return this.javadoc;
- }
-
-}