/** * Copyright (c) 2014 - 2017 Frank Appel * 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: * Frank Appel - initial API and implementation */ package com.codeaffine.eclipse.swt.testhelper; public class LoremIpsum { public final static String PARAGRAPH = "Lorem ipsum dolor sit amet, sed id altera reprehendunt, agam ullum\n" + "necessitatibus et mea. Mel convenire conclusionemque ne, no sit impedit convenire\n" + "rationibus. Ea prompta docendi dolores vel. Pro ex audire explicari ullamcorper,\n" + "sea aeque sadipscing no, cum sint brute omittantur at. Mea ne mutat abhorreant,\n" + "natum maluisset his te. In eum ullum nobis voluptaria, enim malis\n" + "ex his, mentitum intellegebat ne quo."; public final static String PARAGRAPHS = PARAGRAPH + "\n\n" + PARAGRAPH + "\n\n" + PARAGRAPH + "\n\n" + PARAGRAPH + "\n\n" + PARAGRAPH + "\n\n" + PARAGRAPH + "\n\n" + PARAGRAPH; }