code
stringlengths
3
1.18M
language
stringclasses
1 value
package view.views; import org.eclipse.jdt.core.IJavaElement; public class JavaElementSpecifier { public static String getFullSpecification(IJavaElement element) { String specification = element.getAncestor(element.getElementType()) .toString(); /* 7 <=> Klasse */ if (element.getElementType() == 7) { // K...
Java
package view.views; import java.util.Vector; import controller.FundamentalOperationsController; import controller.FundamentalOperationsControllerImplementation; import controller.data.fundamental.TabItemCategory; public class TabEntrys { private Vector<TabItemCategory> entrys = null; // Speichert alle ...
Java
package view.editorActions; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.eclipse.swt.widgets.Text; import singleton.Singleton; import swtElements.MyText; import view.views.CSADView; import view.views.TabEntrys; import controller.UseCaseController; import controller.data.Edit...
Java
package view.editorActions; import singleton.Singleton; import swtElements.MyText; import view.views.CSADView; import controller.UseCaseController; import controller.data.Comment; import controller.data.commentDocumentation.CommentDocumentationRequest; import controller.data.readDocumentation.ReadDocumentationRequest;...
Java
package view.listener; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import controller.UseCaseController; import controller.data.readDocumentation.ReadDocumentationRequest; import singleton.Singleton; import view.views.CSADView; public class Bu...
Java
package view.listener; import java.util.List; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import singleton.Singleton; import view.views.CSADView; import controller.UseCaseController; public class EditListener implements Listener { private final CSADView view; private final UseC...
Java
package view.listener; import java.util.List; import org.eclipse.swt.events.KeyEvent; import org.eclipse.ui.IEditorPart; import org.eclipse.ui.IViewPart; import org.eclipse.ui.IWorkbenchPartSite; import org.eclipse.ui.PartInitException; import controller.UseCaseController; import controller.data.searchRevision.Searc...
Java
package view.listener; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import run.Activator; import singleton.Singleton; import view.views.CSADView; import controller.UseCaseController; public class CommentListener implements Listener { private final String id; private final UseCase...
Java
package view.listener; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.ui.IEditorPart; import singleton.Singleton; import view.views.CSADView; import controller.data.fundamental.TabItemCategory; import controller.data.readDocumentation.ReadDocumentationRequest; public class AdaptListener extends S...
Java
package view.listener; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.ToolBar; import org.eclipse.swt.widgets.ToolItem; import view.views.CSADView; import controller.data.ReadDocumentationRevision; public class InfoL...
Java
package run; import java.net.URL; import java.util.List; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.jface.resource.ImageRegistry; import org.eclipse.ui.plugin.AbstractUIPlugin; import org.osgi.framework.BundleContext; import singleton.Singleton; import controller.data.Comment; /** * The...
Java
package globalOperations; import org.eclipse.mylyn.wikitext.core.parser.MarkupParser; import config.Config; public class MarkupMethods { public static String parseMarkUpToHTML(String markupText) { // if (markupText == null) { MarkupParser markupParser = new MarkupParser(); markupParser.setMarkupLanguage(Conf...
Java
package tests.usecasetester; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import java.util.ArrayList; import java.util.List; import org.junit.After; import org.junit.Before; import org.junit....
Java
package tests; import java.util.ArrayList; import java.util.List; import org.junit.After; import org.junit.Before; import org.junit.Test; import controller.UseCaseControllerImplementation; import controller.data.searchRevision.SearchRevisionRequest; import controller.data.searchRevision.SearchRevisionResponse; publ...
Java
package tests; import org.junit.Before; import org.junit.Test; import controller.UseCaseController; import controller.UseCaseControllerImplementation; public class TestController { private UseCaseController useCaseController; private static String id; @Before public void setUp() throws Exception { useCaseCon...
Java
package tests; import static org.junit.Assert.assertEquals; import java.util.List; import java.util.Vector; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import org.junit.Before; import org.junit.Test; import controller.UseCaseController; import controller.UseCaseControllerImpl...
Java
package tests.testSingleton; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import java.util.ArrayList; import org.junit.Test; import singleton.Singleton; import controller.UseCaseController; import controller.UseCaseControllerImplementation; import controller.data.Comment; ...
Java
package swtElements; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.graphics.Font; import org.eclipse.swt.graphics.FontData; import org.eclipse.swt.layout.GridData; import org.eclipse.ui.forms.widgets.ExpandableComposite; import org.eclipse.ui.forms.widgets.FormToolkit; impor...
Java
package swtElements; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.widgets.Label; public class MyLabel { Label label; public MyLabel(MyComposite client, String text, boolean red){ if(red == false){ this.label = new Label(client.getComposite(), SWT.NONE); label...
Java
package swtElements; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Device; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.TabFolder; import org.eclipse.ui.forms.widgets.FormToolkit; import org.eclipse.ui.forms.widgets.ScrolledForm; publ...
Java
package swtElements; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Text; import view.editors.CommentEditor; import view.editors.DocumentEditor; public class MyText { Text text; public MyText(MyComposite client, int s...
Java
package swtElements; import org.eclipse.jface.layout.GridLayoutFactory; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.ui.forms.widgets.FormToolkit; public class MyComposite { C...
Java
package swtElements; import globalOperations.MarkupMethods; import org.eclipse.swt.SWT; import org.eclipse.swt.browser.Browser; import org.eclipse.swt.layout.GridData; public class MyBrowser { Browser browser; public MyBrowser(MyComposite client, String html, int minHeight, boolean parse){ if(minHeight == 0)...
Java
package swtElements; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.widgets.Composite; import org.eclipse.ui.forms.widgets.ExpandableComposite; import org.eclipse.ui.forms.widgets.FormToolkit; import org.eclipse.ui.forms.widgets.Section; public class MySection { ...
Java
package singleton; import java.util.ArrayList; import java.util.List; import view.views.TabEntrys; import controller.UseCaseController; import controller.UseCaseControllerImplementation; import controller.data.Comment; import controller.data.fundamental.TabItemCategory; import controller.data.searchRevision.SearchRev...
Java
package singleton; import java.net.URL; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.jface.resource.ImageRegistry; import run.Activator; public class StoredImages { private static ImageRegistry registry = new ImageRegistry();; // Speicher für die Bilder /* Die Bilder: */ private Image...
Java
package config; import java.util.ArrayList; import java.util.List; import org.svenson.JSON; import org.svenson.JSONParser; import controller.data.Comment; import controller.data.ReadDocumentationRevision; import controller.data.readDocumentation.ReadDocumentationResponse; import controller.data.searchRevision.Search...
Java
package config; import org.eclipse.mylyn.wikitext.core.parser.markup.MarkupLanguage; import org.eclipse.mylyn.wikitext.mediawiki.core.MediaWikiLanguage; import org.restlet.data.Protocol; public class Config { /** * Server */ public static final String HOST = "vm1.rbg.informatik.tu-darmstadt.de"; public static ...
Java
package generatorImplementations; import generator.Generator; import generator.GeneratorType; import generator.properties.AnimationPropertiesContainer; import java.awt.Color; import java.util.Hashtable; import java.util.Locale; import algoanim.primitives.Text; import algoanim.primitives.updater.TextUpdater; import a...
Java
package generatorImplementations.sorting; import generator.Generator; import generator.GeneratorType; import generator.properties.AnimationPropertiesContainer; import generatorImplementations.AnnotatedAlgorithm; import java.awt.Color; import java.util.Hashtable; import java.util.Locale; import algoanim.primitives.Ar...
Java
package generatorImplementations.misc; import generator.Generator; import generator.GeneratorBundle; import java.util.Vector; public class DummyGenerator implements GeneratorBundle { @Override public Vector<Generator> getGenerators() { Vector<Generator> generators = new Vector<Generator>(35, 15);...
Java
package generatorImplementations.misc; import generator.Generator; import generator.GeneratorType; import generator.properties.AnimationPropertiesContainer; import generatorImplementations.AnnotatedAlgorithm; import java.awt.Color; import java.awt.Font; import java.io.BufferedWriter; import java.io.File; i...
Java
package generatorImplementations.misc; import generator.Generator; import generator.GeneratorType; import generator.properties.AnimationPropertiesContainer; import generatorImplementations.AnnotatedAlgorithm; import java.awt.Color; import java.io.File; import java.io.FileNotFoundException; import java.io.Fi...
Java
package generatorImplementations.misc; import static org.junit.Assert.*; import org.junit.Before; import org.junit.Test; public class TestXeuklid { ErweiterterEuklid2 e; @Before public void setUp() throws Exception { e = new ErweiterterEuklid2(); } @Test public void testCalculateLengt...
Java
package generatorImplementations; import generator.Generator; import java.util.HashMap; import java.util.Vector; import algoanim.animalscript.AnimalScript; import algoanim.annotations.Annotation; import algoanim.annotations.ExecutorManager; import algoanim.annotations.LineParser; import algoanim.primitives.SourceCod...
Java
package generatorImplementations.hashing; import generator.Generator; import generator.GeneratorType; import generator.properties.AnimationPropertiesContainer; import java.awt.Color; import java.awt.Font; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOExcept...
Java
package generatorImplementations.hashing; import generator.Generator; import generator.GeneratorBundle; import java.util.Vector; public class DummyGenerator implements GeneratorBundle { @Override public Vector<Generator> getGenerators() { Vector<Generator> generators = new Vector<Generator>(35, 1...
Java
package generatorImplementations.misc; import generator.Generator; import generator.GeneratorBundle; import java.util.Vector; public class DummyGenerator implements GeneratorBundle { @Override public Vector<Generator> getGenerators() { Vector<Generator> generators = new Vector<Generator>(35, 15);...
Java
package generatorImplementations.misc; import generator.Generator; import generator.GeneratorType; import generator.properties.AnimationPropertiesContainer; import java.awt.Color; import java.awt.Font; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; ...
Java
package generatorImplementations; import generator.Generator; import generator.GeneratorType; import generator.properties.AnimationPropertiesContainer; import java.awt.Color; import java.util.Hashtable; import java.util.Locale; import algoanim.primitives.Text; import algoanim.primitives.updater.TextUpdater; import a...
Java
package generatorImplementations.sorting; import generator.Generator; import generator.GeneratorType; import generator.properties.AnimationPropertiesContainer; import generatorImplementations.AnnotatedAlgorithm; import java.awt.Color; import java.util.Hashtable; import java.util.Locale; import algoanim.primitives.Ar...
Java
package generatorImplementations; import generator.Generator; import java.util.HashMap; import java.util.Vector; import algoanim.animalscript.AnimalScript; import algoanim.annotations.Annotation; import algoanim.annotations.ExecutorManager; import algoanim.annotations.LineParser; import algoanim.primitives.SourceCod...
Java
package generatorImplementations.hashing; import generator.Generator; import generator.GeneratorBundle; import java.util.Vector; public class DummyGenerator implements GeneratorBundle { @Override public Vector<Generator> getGenerators() { Vector<Generator> generators = new Vector<Generator>(35, 1...
Java
package generatorImplementations.hashing; import generator.Generator; import generator.GeneratorType; import generator.properties.AnimationPropertiesContainer; import java.awt.Color; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.util....
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
Java