001/*-------------------------------------------------------------------------+
002|                                                                          |
003| Copyright 2005-2011 the ConQAT Project                                   |
004|                                                                          |
005| Licensed under the Apache License, Version 2.0 (the "License");          |
006| you may not use this file except in compliance with the License.         |
007| You may obtain a copy of the License at                                  |
008|                                                                          |
009|    http://www.apache.org/licenses/LICENSE-2.0                            |
010|                                                                          |
011| Unless required by applicable law or agreed to in writing, software      |
012| distributed under the License is distributed on an "AS IS" BASIS,        |
013| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
014| See the License for the specific language governing permissions and      |
015| limitations under the License.                                           |
016+-------------------------------------------------------------------------*/
017package org.conqat.lib.commons.region;
018
019import com.fasterxml.jackson.annotation.JsonCreator;
020import com.fasterxml.jackson.annotation.JsonProperty;
021
022/**
023 * Marker class used in code that needs to work with both offset- and line-based
024 * regions to avoid confusing them.
025 * 
026 * Lines are inclusive (both start and end) and 1-based.
027 * 
028 * @see OffsetBasedRegion
029 */
030public class LineBasedRegion extends SimpleRegion {
031
032        /** Version for serialization. */
033        private static final long serialVersionUID = 1;
034
035        @JsonCreator
036        public LineBasedRegion(@JsonProperty(START_PROPERTY) int start, @JsonProperty(END_PROPERTY) int end) {
037                super(start, end);
038        }
039
040}