X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjson%2Fbinding%2Fbiojson%2Fv1%2FAlignmentPojo.java;h=7b78313e9a59068098ac42f2efa91cdffac2105a;hb=17e77c3f2949a0729322b4a8d907f3f34b6a9914;hp=9021a73bd20122f176e8be558c8ba51c54e72871;hpb=2727ef35831c6a0d071de16ce43f058be6ab166c;p=jalview.git diff --git a/src/jalview/json/binding/biojson/v1/AlignmentPojo.java b/src/jalview/json/binding/biojson/v1/AlignmentPojo.java index 9021a73..7b78313 100644 --- a/src/jalview/json/binding/biojson/v1/AlignmentPojo.java +++ b/src/jalview/json/binding/biojson/v1/AlignmentPojo.java @@ -1,6 +1,25 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9) + * Copyright (C) 2015 The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.json.binding.biojson.v1; - import java.util.ArrayList; import java.util.HashMap; import java.util.List; @@ -8,16 +27,20 @@ import java.util.Map; import com.github.reinert.jjschema.Attributes; -@Attributes(title="BioJSON", description="A specification for the representation and exchange of bioinformatics data") +@Attributes( + title = "BioJSON", + description = "A specification for the representation and exchange of bioinformatics data") public class AlignmentPojo { - @Attributes(required = true, description = "Serial version identifier for BioJSON schema") + @Attributes( + required = true, + description = "Serial version identifier for BioJSON schema") private String svid = "1.0"; @Attributes( required = true, minItems = 1, - description = "An array of Sequences which makes up the Alignment") + description = "An array of Sequences which makes up the Alignment") private List seqs = new ArrayList(); @Attributes( @@ -48,12 +71,13 @@ public class AlignmentPojo "Blosum62", "RNA Helices", "% Identity" }, description = "The Colour Scheme applied to the alignment") private String colourScheme; - + @Attributes( - required = true, - maxItems = 0, description = "AppSettings stores key=value pairs of custom application specific
" - + "settings (i.e visualisation settings, etc) for different applications
" - + "that consume or generate BioJSON") + required = true, + maxItems = 0, + description = "AppSettings stores key=value pairs of custom application specific
" + + "settings (i.e visualisation settings, etc) for different applications
" + + "that consume or generate BioJSON") Map appSettings = new HashMap(); public AlignmentPojo()