001package ca.uhn.fhir.model.base.composite;
002
003import org.hl7.fhir.instance.model.api.INarrative;
004
005import ca.uhn.fhir.model.api.BaseIdentifiableElement;
006import ca.uhn.fhir.model.api.ICompositeDatatype;
007import ca.uhn.fhir.model.primitive.BoundCodeDt;
008import ca.uhn.fhir.model.primitive.XhtmlDt;
009
010/*
011 * #%L
012 * HAPI FHIR - Core Library
013 * %%
014 * Copyright (C) 2014 - 2016 University Health Network
015 * %%
016 * Licensed under the Apache License, Version 2.0 (the "License");
017 * you may not use this file except in compliance with the License.
018 * You may obtain a copy of the License at
019 * 
020 *      http://www.apache.org/licenses/LICENSE-2.0
021 * 
022 * Unless required by applicable law or agreed to in writing, software
023 * distributed under the License is distributed on an "AS IS" BASIS,
024 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
025 * See the License for the specific language governing permissions and
026 * limitations under the License.
027 * #L%
028 */
029
030/**
031 * @param <T> The narrative status enum type  
032 */
033public abstract class BaseNarrativeDt<T extends Enum<?>> extends BaseIdentifiableElement implements ICompositeDatatype, INarrative {
034
035        public abstract BoundCodeDt<T> getStatus();
036
037        @Override
038        public void setDivAsString(String theString)  {
039                getDiv().setValueAsString(theString);
040        }
041
042        @Override
043        public String getDivAsString() {
044                return getDiv().getValueAsString();
045        }
046
047        @Override
048        public INarrative setStatusAsString(String theString) {
049                getStatus().setValueAsString(theString);
050                return this;
051        }
052
053        @Override
054        public String getStatusAsString() {
055                return getStatus().getValueAsString();
056        }
057
058        public abstract XhtmlDt getDiv();
059        
060}