/*=============================================================================# # Copyright (c) 2015-2016 Stephan Wahlbrink (WalWare.de) and others. # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html # # Contributors: # Stephan Wahlbrink - initial API and implementation #=============================================================================*/ package de.walware.docmlet.wikitext.core.source; import org.eclipse.mylyn.wikitext.core.parser.LinkAttributes; public class LinkByRefAttributes extends LinkAttributes { public static final String REF_SCHEME= "ref"; private LabelInfo referenceLabel; public LinkByRefAttributes(final LabelInfo referenceLabel) { this.referenceLabel= referenceLabel; } public void setReferenceLabel(final LabelInfo referenceLabel) { this.referenceLabel= referenceLabel; } public LabelInfo getReferenceLabel() { return this.referenceLabel; } }