/******************************************************************************* * Copyright (c) 2012-2015 Codenvy, S.A. * 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: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.jseditor.java.client.document; import org.eclipse.che.ide.ext.java.jdt.text.TextStore; import org.eclipse.che.ide.jseditor.client.document.Document; /** * Provides access to the stored text into document and allows to manipulate it. * * @author Andrienko Alexander */ public class FormatterStore implements TextStore { public Document document; public FormatterStore(Document document) { this.document = document; } /** {@inheritDoc} */ @Override public char get(int offset) { return document.getContents().charAt(offset); } /** {@inheritDoc} */ @Override public String get(int offset, int length) { return document.getContentRange(offset, length); } /** {@inheritDoc} */ @Override public int getLength() { return document.getContentsCharCount(); } /** {@inheritDoc} */ @Override public void replace(int offset, int length, String text) { document.replace(offset, length, text); } /** {@inheritDoc} */ @Override public void set(String text) { throw new UnsupportedOperationException("Set method is unsupported in document!"); } }