Source
stringclasses
1 value
Date
int32
2.01k
2.01k
Text
stringlengths
3
15.9M
Token_count
int32
1
2.44M
github-java-corpus
2,012
/** * Copyright 2005-2011 The Kuali Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php * * Unless requ...
285
github-java-corpus
2,012
/** * Copyright 2005-2011 The Kuali Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php * * Unless requ...
276
github-java-corpus
2,012
/** * Copyright 2005-2011 The Kuali Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php * * Unless required by a...
290
github-java-corpus
2,012
/** * Copyright 2005-2011 The Kuali Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php * * Unless required by a...
298
github-java-corpus
2,012
/** * Copyright 2005-2011 The Kuali Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php * * Unless required by a...
298
github-java-corpus
2,012
/* * Copyright 2006-2011 The Kuali Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php * * Unless required by ap...
279
github-java-corpus
2,012
/** * Copyright 2005-2012 The Kuali Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php * * Unless required by a...
168
github-java-corpus
2,012
package in.ac.iitb.wiki; import in.ac.iitb.qassist.util.EntityParser; import in.ac.iitb.qassist.util.InterpretationSplitter; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.Writer; import j...
996
github-java-corpus
2,012
package in.ac.iitb.qassist.util; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; public class InterpretationSplitter { private static final String INTERPRETATIONS_REGEX = "//[0-9/]+//"; private static Pattern inter...
225
github-java-corpus
2,012
package in.ac.iitb.qassist.util; import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; public class EntityParser { // private static final String ENTITY_REGEX = "([\\w-'\\s]*+).[0-9/NA]*."; private static final String ENTITY_REGEX = "([-\\w'\\s]*+)\\x7C[\...
846
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2011 Obeo. * 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 * h...
336
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2011 Obeo. * 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 * h...
3,421
github-java-corpus
2,012
package org.eclipse.acceleo.tutorial.webapp.services; public class StringFormat { public static String convertInHtmlId(String s) { s = s.trim(); if (s.length() > 0) { s = s.toLowerCase(); s = s.replace(' ', '-'); s = s.replace('_', '-'); } return s; } }
80
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2011 Obeo. * 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 * h...
336
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.presentation; import java.util.ArrayList; import java.util.Collection; import org.eclipse.emf.common.ui.viewer.IViewerProvider; import org.eclipse.emf.edit.domain.EditingDomain; import org.eclipse.emf.edit.dom...
3,173
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.presentation; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java...
4,079
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.presentation; import org.eclipse.emf.common.EMFPlugin; import org.eclipse.emf.common.ui.EclipseUIPlugin; import org.eclipse.emf.common.util.ResourceLocator; /** * This is the central singleton for the Webap...
461
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.presentation; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.EventObject; import java.util.Has...
12,030
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2012 Obeo. * 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 ...
1,212
github-java-corpus
2,012
package org.eclipse.acceleo.tutorial.wizard; import java.io.BufferedReader; import java.io.ByteArrayInputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.StringReader; import java.lang.reflect...
2,332
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2011 Obeo. * 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 * h...
334
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2011 Obeo. * 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 * h...
3,398
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2012 Obeo. * 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 ...
346
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2012 Obeo. * 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 ...
866
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2012 Obeo. * 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 ...
1,202
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2012 Obeo. * 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 ...
344
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2012 Obeo. * 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 ...
917
github-java-corpus
2,012
/******************************************************************************* * Copyright (c) 2008, 2012 Obeo. * 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 ...
1,183
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Widget</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are support...
698
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.ecore.EAttribute; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EEnum; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.EReference; /** * <!-- be...
21,257
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.ecore.EFactory; /** * <!-- begin-user-doc --> * The <b>Factory</b> for the model. * It provides a create method for each non-abstract class of the model. * <!-- end-user-doc --> * ...
1,581
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Static View</b></em>'. * <!-- end-user-doc --> * * <p> * The following features ...
386
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Form Widget</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are su...
715
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.util; import org.eclipse.acceleo.tutorial.webapp.*; import org.eclipse.emf.common.notify.Adapter; import org.eclipse.emf.common.notify.Notifier; import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; ...
4,342
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.util; import org.eclipse.acceleo.tutorial.webapp.*; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.util.Switch; /** * <!-- begin-user-doc --> * ...
5,493
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Gallery</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are su...
323
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.NamedElement; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; ...
920
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.AbstractView; import org.eclipse.acceleo.tutorial.webapp.Application; import org.eclipse.acceleo.tutorial.webapp.Operation; import or...
2,059
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.Section; import org.eclipse.acceleo.tutorial.webapp.StaticView; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org....
2,489
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.TextArea; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.ecore.EClass; /** * <!-- begin-user-doc --> * An implementation of...
204
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.*; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EDataType; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; im...
1,780
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.Form; import org.eclipse.acceleo.tutorial.webapp.FormWidget; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.e...
1,048
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.Text; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import...
922
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.Application; import org.eclipse.acceleo.tutorial.webapp.Collection; import org.eclipse.acceleo.tutorial.webapp.Model; import org.eclipse.acceleo.tutorial.webapp.Weba...
1,690
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.AbstractView; import org.eclipse.acceleo.tutorial.webapp.Application; import org.eclipse.acceleo.tutorial.webapp.Collection; import org.eclipse.acceleo.tutorial.weba...
2,330
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.Parameter; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.ecore.EClass; /** * <!-- begin-user-doc --> * An implementation o...
202
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.Table; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.notify.Notification; import org.ec...
1,911
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.ImagesBlock; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.util.EList; import org.eclip...
857
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.CardinalityKind; import org.eclipse.acceleo.tutorial.webapp.Model; import org.eclipse.acceleo.tutorial.webapp.Reference; import org.eclipse.acceleo.tutorial.webapp.W...
908
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.Operation; import org.eclipse.acceleo.tutorial.webapp.Parameter; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import o...
900
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.Form; import org.eclipse.acceleo.tutorial.webapp.FormWidget; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.notify.Notific...
1,747
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.CheckBox; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; im...
907
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.Attribute; import org.eclipse.acceleo.tutorial.webapp.CardinalityKind; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.noti...
939
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.Spinner; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.util.EList; import org.eclipse.e...
826
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.Section; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.acceleo.tutorial.webapp.Widget; import org.eclipse.emf.common.notify.Notifica...
1,714
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.Collection; import org.eclipse.acceleo.tutorial.webapp.Model; import org.eclipse.acceleo.tutorial.webapp.ModelView; import org.eclipse.acceleo.tutorial.webapp.Webapp...
930
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.AbstractView; import org.eclipse.acceleo.tutorial.webapp.Application; import org.eclipse.acceleo.tutorial.webapp.Attribute; import org.eclipse.acceleo.tutorial.webap...
10,473
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.Application; import org.eclipse.acceleo.tutorial.webapp.Attribute; import org.eclipse.acceleo.tutorial.webapp.Model; import org.eclip...
2,196
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.Video; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; impor...
900
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.Gallery; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.util.EList; import org.eclipse.e...
846
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.Application; import org.eclipse.acceleo.tutorial.webapp.Router; import org.eclipse.acceleo.tutorial.webapp.RouterMapping; import org....
1,652
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.Section; import org.eclipse.acceleo.tutorial.webapp.StaticView; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org....
1,036
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.impl; import org.eclipse.acceleo.tutorial.webapp.AbstractView; import org.eclipse.acceleo.tutorial.webapp.RouterMapping; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.not...
1,376
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Application</b></em>'. * <!-- end-user-doc --> * * <p> * The following features ar...
1,191
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Section</b></em>'. * <!-- end-user-doc --> * ...
1,201
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Spinner</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are su...
313
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Attribute</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.ec...
380
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Reference</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.ec...
366
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Model</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supp...
1,026
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Router Mapping</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are...
649
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Form</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are suppo...
388
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Video</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclips...
373
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Router</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are sup...
645
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.eclipse.emf.common.util.Enumerator; /** * <!-- begin-user-doc --> * A representation of the literals of the enumera...
1,260
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Table</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supp...
1,035
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Parameter</b></em>'. * <!-- end-user-doc --> * * * @see org.eclipse.acceleo.tutorial.webapp.WebappPackage#getParameter() * ...
98
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Abstract View</b></em>'. * <!-- end-user-doc --> * * <p> * The following features ...
894
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Text</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse...
386
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Images Block</b></em>'. * <!-- end-user-doc --> * * <p> * The following features a...
328
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Text Area</b></em>'. * <!-- end-user-doc --> * * * @see org.eclipse.acceleo.tutorial.webapp.WebappPackage#getTextArea() * @...
100
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Collection</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.e...
690
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Check Box</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.ec...
367
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Operation</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are ...
323
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Model View</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.e...
384
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Named Element</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are ...
381
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.Section; import org.eclipse.acceleo.tutorial.webapp.WebappFactory; import org.eclipse.acceleo.tutorial.w...
1,667
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.Application; import org.eclipse.acceleo.tutorial.webapp.WebappFactory; import org.eclipse.acceleo.tutori...
1,264
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.AbstractView; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common....
1,015
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.Text; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.notify.A...
923
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.ArrayList; import java.util.Collection; import org.eclipse.acceleo.tutorial.webapp.util.WebappAdapterFactory; import org.eclipse.emf.common.notify.Adapter; import org.eclipse.emf.com...
4,691
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.Form; import org.eclipse.acceleo.tutorial.webapp.WebappFactory; import org.eclipse.acceleo.tutorial.weba...
1,128
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.Gallery; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.notif...
935
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.Collection; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.notify.AdapterFactory; import o...
852
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.ModelView; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.not...
860
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.Model; import org.eclipse.acceleo.tutorial.webapp.WebappFactory; import org.eclipse.acceleo.tutorial.web...
1,165
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.Spinner; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.notif...
935
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.RouterMapping; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common...
1,161
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.StaticView; import org.eclipse.acceleo.tutorial.webapp.WebappFactory; import org.eclipse.acceleo.tutor...
1,066
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.Attribute; import org.eclipse.acceleo.tutorial.webapp.WebappPackage; import org.eclipse.emf.common.not...
929
github-java-corpus
2,012
/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.acceleo.tutorial.webapp.provider; import java.util.Collection; import java.util.List; import org.eclipse.acceleo.tutorial.webapp.TextArea; import org.eclipse.emf.common.notify.AdapterFactory; import org.eclipse.emf.common.notify.No...
693