19 package org.sleuthkit.autopsy.geolocation.datamodel;
 
   21 import java.util.ArrayList;
 
   22 import java.util.Collections;
 
   23 import java.util.List;
 
   25 import org.openide.util.NbBundle.Messages;
 
   70     private static String 
getAreaName(Map<BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute> attributeMap) {
 
   86         "GEOArea_point_label_header=Area outline point for area: {0}" 
   90             addToPath(
new AreaWaypoint(artifact, Bundle.GEOArea_point_label_header(
getLabel()), point));
 
  106         if (attribute == null) {
 
  120     final class AreaWaypoint 
extends Waypoint {
 
  136             super(artifact, pointLabel,
 
  139                     point.getLongitude(),
 
  145             propertyList = createPropertyList(point);
 
  156             return Collections.unmodifiableList(propertyList);
 
  166         private List<Waypoint.Property> createPropertyList(GeoAreaPoints.AreaPoint point) {
 
  167             List<Waypoint.Property> list = 
new ArrayList<>();
 
void buildPath(GeoAreaPoints points, BlackboardArtifact artifact)
 
static< T > T fromAttribute(BlackboardAttribute attr, Class< T > clazz)
 
Area(BlackboardArtifact artifact)
 
final BlackboardArtifact artifact
 
Area(BlackboardArtifact artifact, Map< BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute > attributeMap)
 
static String getAreaName(Map< BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute > attributeMap)
 
GeoAreaPoints getPointsList(Map< BlackboardAttribute.ATTRIBUTE_TYPE, BlackboardAttribute > attributeMap)