001package com.hfg.bio.seq.format.feature.genbank; 002 003import com.hfg.bio.seq.format.feature.SeqFeatureImpl; 004 005 006public class GenBankFeature extends SeqFeatureImpl 007{ 008 //--------------------------------------------------------------------------- 009 public GenBankFeature(GenBankFeatureKey inName, GenBankFeatureLocation inLocation) 010 { 011 super(inName, inLocation); 012 } 013 014 //--------------------------------------------------------------------------- 015 @Override 016 public GenBankFeatureKey name() 017 { 018 return (GenBankFeatureKey) super.name(); 019 } 020 021 022 //--------------------------------------------------------------------------- 023 @Override 024 public String toString() 025 { 026 return name().toString(); 027 } 028 029}