Revision 25920 branches/v2_0_0_prep/libraries/libFMap_mapcontext/src/org/gvsig/fmap/mapcontext/layers/vectorial/FLyrVect.java

View differences:

FLyrVect.java
46 46
import java.awt.geom.Point2D;
47 47
import java.awt.image.BufferedImage;
48 48
import java.net.URI;
49
import java.util.ArrayList;
50 49
import java.util.Iterator;
50
import java.util.Set;
51
import java.util.TreeSet;
51 52

  
52 53
import javax.print.attribute.PrintRequestAttributeSet;
53 54
import javax.print.attribute.standard.PrintQuality;
......
1533 1534
		}
1534 1535

  
1535 1536
	}
1537

  
1538
	/*
1539
	 * (non-Javadoc)
1540
	 * 
1541
	 * @see org.gvsig.metadata.Metadata#getMetadataChildren()
1542
	 */
1543
	public Set getMetadataChildren() {
1544
		Set ret = new TreeSet();
1545
		ret.add(this.featureStore);
1546
		return ret;
1547
	}
1548

  
1549
	/*
1550
	 * (non-Javadoc)
1551
	 * 
1552
	 * @see org.gvsig.metadata.Metadata#getMetadataID()
1553
	 */
1554
	public Object getMetadataID() {
1555
		return "Layer(" + this.getName() + "):"
1556
				+ this.featureStore.getMetadataID();
1557
	}
1558

  
1559
	/*
1560
	 * (non-Javadoc)
1561
	 * 
1562
	 * @see org.gvsig.metadata.Metadata#getMetadataName()
1563
	 */
1564
	public String getMetadataName() {
1565
		return "Layer '" + this.getName() + "':"
1566
				+ this.featureStore.getMetadataName();
1567
	}
1568

  
1536 1569
 }

Also available in: Unified diff