PageRenderTime 2231ms queryTime 245ms sortTime 651ms getByIdsTime 72ms findMatchingLines 155ms

100+ results results for 'abstract class' (2231 ms)

Not the results you expected?
metafile.cpp https://bitbucket.org/lennonchan/cafu.git | C++ | 532 lines
                    
47IMPLEMENT_DYNAMIC_CLASS(wxMetafile, wxObject)
                    
48IMPLEMENT_ABSTRACT_CLASS(wxMetafileDC, wxDC)
                    
49
                    
                
Clinit.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 377 lines
                    
35 */
                    
36public class Clinit extends AbstractMethodDeclaration {
                    
37	
                    
97	 */
                    
98	public void generateCode(ClassScope classScope, ClassFile classFile) {
                    
99
                    
106			clinitOffset = classFile.contentsOffset;
                    
107			this.generateCode(classScope, classFile, clinitOffset);
                    
108		} catch (AbortMethod e) {
                    
317	protected void generatePostSyntheticCode(
                    
318		ClassScope classScope,
                    
319		CodeStream codeStream) {
                    
350
                    
351		this.scope = new MethodScope(classScope, classScope.referenceContext, true);
                    
352	}
                    
                
MatchingTask.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 445 lines
                    
50/**
                    
51 * This is an abstract task that should be used by all those tasks that
                    
52 * require to include or exclude files based on pattern matching.
                    
56
                    
57public abstract class MatchingTask extends Task implements SelectorContainer {
                    
58
                    
                
Request.java https://gitlab.com/brian0218/rk3066_r-box_android4.2.2_sdk | Java | 432 lines
                    
30/**
                    
31 * Base class for all network requests.
                    
32 *
                    
34 */
                    
35public abstract class Request<T> implements Comparable<Request<T>> {
                    
36
                    
85     * the normal response listener is not provided here as delivery of responses
                    
86     * is provided by subclasses, who have a better idea of how to deliver an
                    
87     * already-parsed response.
                    
369    /**
                    
370     * Subclasses must implement this to parse the raw network response
                    
371     * and return an appropriate response type. This method will be
                    
376     */
                    
377    abstract protected Response<T> parseNetworkResponse(NetworkResponse response);
                    
378
                    
                
Collator.java https://bitbucket.org/festevezga/xobotos.git | Java | 390 lines
                    
25/**
                    
26 * Performs locale-sensitive string comparison. A concrete subclass,
                    
27 * {@link RuleBasedCollator}, allows customization of the collation ordering by
                    
110 */
                    
111public abstract class Collator implements Comparator<Object>, Cloneable {
                    
112    /**
                    
189     *         greater than {@code object2}.
                    
190     * @throws ClassCastException
                    
191     *         if {@code object1} or {@code object2} is not a {@code String}.
                    
207     */
                    
208    public abstract int compare(String string1, String string2);
                    
209
                    
261     */
                    
262    public abstract CollationKey getCollationKey(String string);
                    
263
                    
                
linkbubble.js https://github.com/ggppwx/heuristic-problem-solving-.git | JavaScript | 458 lines
                    
15/**
                    
16 * @fileoverview Base class for bubble plugins.
                    
17 *
                    
27goog.require('goog.editor.Link');
                    
28goog.require('goog.editor.plugins.AbstractBubblePlugin');
                    
29goog.require('goog.editor.range');
                    
41 * @constructor
                    
42 * @extends {goog.editor.plugins.AbstractBubblePlugin}
                    
43 */
                    
61goog.inherits(goog.editor.plugins.LinkBubble,
                    
62    goog.editor.plugins.AbstractBubblePlugin);
                    
63
                    
334 * Returns whether the URL should be considered invalid.  This always returns
                    
335 * false in the base class, and should be overridden by subclasses that wish
                    
336 * to impose validity rules on URLs.
                    
                
Mssql.php https://github.com/kervin/kyzstudio.git | PHP | 423 lines
                    
24/**
                    
25 * @see Zend_Db_Adapter_Pdo_Abstract
                    
26 */
                    
26 */
                    
27#require_once 'Zend/Db/Adapter/Pdo/Abstract.php';
                    
28
                    
30/**
                    
31 * Class for connecting to Microsoft SQL Server databases and performing common operations.
                    
32 *
                    
38 */
                    
39class Zend_Db_Adapter_Pdo_Mssql extends Zend_Db_Adapter_Pdo_Abstract
                    
40{
                    
143     *
                    
144     * It is necessary to override the abstract PDO transaction functions here, as
                    
145     * the PDO driver for MSSQL does not support transactions.
                    
                
defs-compact.h https://github.com/rofl0r/gdb.git | C Header | 510 lines
                    
115struct argbuf {
                    
116  /* These are the baseclass definitions.  */
                    
117  IADDR addr;
                    
133   type entirely and always just use ARGBUF, but for future concerns and as
                    
134   a level of abstraction it is left in.  */
                    
135
                    
                
apxx_lincons1.hh https://bitbucket.org/arieg/apron.git | C++ Header | 528 lines
                    
3 *
                    
4 * APRON Library / C++ class wrappers
                    
5 *
                    
36 */
                    
37class lincons1 : public use_malloc {
                    
38
                    
46
                    
47  friend class lincons1_array;
                    
48
                    
327 */
                    
328class lincons1_array : public use_malloc {
                    
329
                    
336
                    
337  friend class abstract1;
                    
338
                    
                
Attribute.cs https://github.com/iainlane/mono.git | C# | 444 lines
                    
42	[ClassInterfaceAttribute (ClassInterfaceType.None)]
                    
43	public abstract class Attribute : _Attribute {
                    
44		protected Attribute ()
                    
49			get {
                    
50				// Derived classes should override this default behaviour as appropriate
                    
51				return this.GetType ();
                    
268		{
                    
269			// Derived classes should override this default behaviour as appropriate
                    
270			return false;
                    
406			// default action is the same as Equals.
                    
407			// Derived classes should override as appropriate
                    
408			return this.Equals (obj);
                    
                
JustCompileSearch.java https://bitbucket.org/gasol/lucene3.git | Java | 501 lines
                    
30/**
                    
31 * Holds all implementations of classes in the o.a.l.search package as a
                    
32 * back-compatibility test. It does not run any tests per-se, however if 
                    
32 * back-compatibility test. It does not run any tests per-se, however if 
                    
33 * someone adds a method to an interface or abstract method to an abstract
                    
34 * class, one of the implementations here will fail to compile and so we know
                    
150  
                    
151  static final class JustCompileCollector extends Collector {
                    
152
                    
264  static final class JustCompileFilter extends Filter {
                    
265    // Filter is just an abstract class with no abstract methods. However it is
                    
266    // still added here in case someone will add abstract methods in the future.
                    
465
                    
466  static final class JustCompileWeight extends Weight {
                    
467
                    
                
AbstractJoomlaPlatformFilter.php https://bitbucket.org/pastor399/newcastleunifc.git | PHP | 388 lines
                    
8
                    
9abstract class RokSprocket_Provider_AbstractJoomlaPlatformFilter implements RokSprocket_Provider_Filter_IProcessor
                    
10{
                    
85    /**
                    
86     * @abstract
                    
87     * @return mixed
                    
88     */
                    
89    abstract protected function setBaseQuery();
                    
90
                    
91    /**
                    
92     * @abstract
                    
93     * @return mixed
                    
94     */
                    
95    abstract protected function setAccessWhere();
                    
96
                    
                
SamlRegisteredServiceServiceProviderMetadataFacade.java https://github.com/frett/cas.git | Java | 283 lines
                    
17import org.opensaml.saml.metadata.resolver.MetadataResolver;
                    
18import org.opensaml.saml.saml2.core.RequestAbstractType;
                    
19import org.opensaml.saml.saml2.metadata.AssertionConsumerService;
                    
48@Getter
                    
49public class SamlRegisteredServiceServiceProviderMetadataFacade {
                    
50
                    
78                                                                                   final SamlRegisteredService registeredService,
                    
79                                                                                   final RequestAbstractType request) {
                    
80        return get(resolver, registeredService, SamlIdPUtils.getIssuerFromSamlObject(request));
                    
196        if (children != null) {
                    
197            nameIdFormats.addAll(children.stream().filter(NameIDFormat.class::isInstance)
                    
198                .map(child -> ((NameIDFormat) child).getFormat()).collect(Collectors.toList()));
                    
                
Mssql.php https://gitlab.com/florianocomercial/centreon | PHP | 423 lines
                    
24/**
                    
25 * @see Zend_Db_Adapter_Pdo_Abstract
                    
26 */
                    
26 */
                    
27require_once 'Zend/Db/Adapter/Pdo/Abstract.php';
                    
28
                    
30/**
                    
31 * Class for connecting to Microsoft SQL Server databases and performing common operations.
                    
32 *
                    
38 */
                    
39class Zend_Db_Adapter_Pdo_Mssql extends Zend_Db_Adapter_Pdo_Abstract
                    
40{
                    
143     *
                    
144     * It is necessary to override the abstract PDO transaction functions here, as
                    
145     * the PDO driver for MSSQL does not support transactions.
                    
                
Json.php https://gitlab.com/rsilveira1987/Expresso | PHP | 459 lines
                    
16 */
                    
17class Setup_Frontend_Json extends Tinebase_Frontend_Abstract
                    
18{
                    
342     * .
                    
343     * @see Tinebase_Application_Json_Abstract
                    
344     *
                    
418     * Returns registry data of all applications current user has access to
                    
419     * @see Tinebase_Application_Json_Abstract
                    
420     *
                    
452    /**
                    
453     * @return Tinebase_Controller_Abstract
                    
454     */
                    
                
Schema.php https://gitlab.com/martinstti/silex-microframework-rest | PHP | 510 lines
                    
25use Doctrine\DBAL\Schema\Visitor\Visitor;
                    
26use Doctrine\DBAL\Platforms\AbstractPlatform;
                    
27
                    
40 *
                    
41 * The abstraction layer that covers a PostgreSQL schema is the namespace of an
                    
42 * database object (asset). A schema can have a name, which will be used as
                    
55 */
                    
56class Schema extends AbstractAsset
                    
57{
                    
416     *
                    
417     * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform
                    
418     *
                    
420     */
                    
421    public function toSql(AbstractPlatform $platform)
                    
422    {
                    
                
Collection.php https://gitlab.com/LisovyiEvhenii/ismextensions | PHP | 367 lines
                    
30 */
                    
31class Mage_Reports_Model_Resource_Report_Product_Viewed_Collection
                    
32    extends Mage_Reports_Model_Resource_Report_Collection_Abstract
                    
                
PostgreSqlSchemaManager.php https://gitlab.com/martinstti/silex-microframework-rest | PHP | 438 lines
                    
32 */
                    
33class PostgreSqlSchemaManager extends AbstractSchemaManager
                    
34{
                    
                
Review.php https://github.com/rgranadino/magento-mirror.git | PHP | 441 lines
                    
34 */
                    
35class Mage_Review_Model_Resource_Review extends Mage_Core_Model_Resource_Db_Abstract
                    
36{
                    
124     */
                    
125    protected function _beforeSave(Mage_Core_Model_Abstract $object)
                    
126    {
                    
145     */
                    
146    protected function _afterSave(Mage_Core_Model_Abstract $object)
                    
147    {
                    
210     */
                    
211    protected function _afterLoad(Mage_Core_Model_Abstract $object)
                    
212    {
                    
228     *
                    
229     * @param Mage_Core_Model_Abstract $object
                    
230     * @return Mage_Review_Model_Resource_Review
                    
                
publicize.php https://gitlab.com/endomorphosis/falkenstein | PHP | 407 lines
                    
2
                    
3abstract class Publicize_Base {
                    
4
                    
75	/**
                    
76	* Functions to be implemented by the extended class (publicize-wpcom or publicize-jetpack)
                    
77	*/
                    
77	*/
                    
78	abstract function get_connection_id( $connection );
                    
79	abstract function connect_url( $service_name );
                    
79	abstract function connect_url( $service_name );
                    
80	abstract function disconnect_url( $service_name, $id );
                    
81	abstract function get_connection_meta( $connection );
                    
81	abstract function get_connection_meta( $connection );
                    
82	abstract function get_services( $filter );
                    
83	abstract function get_connections( $service, $_blog_id = false, $_user_id = false );
                    
                
ThemeEditorPanel.java https://bitbucket.org/userdima/mucommander.git | Java | 331 lines
                    
35/**
                    
36 * Base class for theme editor panels.
                    
37 * <p>
                    
46 */
                    
47abstract class ThemeEditorPanel extends PreferencesPanel {
                    
48    // - Instance fields -----------------------------------------------------------------
                    
263     */
                    
264    private static class ThemeFontChooserListener implements ChangeListener {
                    
265        // - Instance fields -------------------------------------------------------------
                    
305     */
                    
306    private static class PreviewFontChooserListener implements ChangeListener {
                    
307        // - Instance fields -------------------------------------------------------------
                    
                
ActionPanel.java https://bitbucket.org/rsaqc/netbeans-soa.git | Java | 428 lines
                    
74 */
                    
75public class ActionPanel extends DesignViewPanel implements Widget,
                    
76        FocusListener
                    
109                removeActionAction, this, 0); // NOI18N
                    
110        ExUtils.setA11Y(titledPanel, ActionPanel.class, 
                    
111                "ActionTitlePanel"); // NOI18N
                    
113        nameLabel = new JLabel(getMessage("LBL_ACTION_NAME")); // NOI18N
                    
114        ExUtils.setA11Y(nameLabel, ActionPanel.class,
                    
115                "ActionNameLabel"); // NOI18N
                    
121        nameEditor = new NameEditor(designView);
                    
122        ExUtils.setA11Y(nameEditor, ActionPanel.class,
                    
123                "ActionNameEditor"); // NOI18N
                    
279
                    
280    private class RemoveActionAction extends AbstractAction {
                    
281        RemoveActionAction() {
                    
                
PluginUtils.java https://github.com/sefirot/androidStuff.git | Java | 511 lines
                    
201		}
                    
202		AbstractButton b = new RolloverButton(icon);
                    
203		if (listener != null) {
                    
321		try {
                    
322			Class<?> cl = Class.forName("org.gjt.sp.jedit.buffer.JEditBuffer");
                    
323			Method method = cl.getDeclaredMethod("parseBufferLocalProperties");
                    
343			jEdit.visit(visitor);
                    
344			return ((Set<EditPane>) visitor.getClass().getField("editPanes").get(visitor))
                    
345					.toArray(new EditPane[0]);
                    
354		try {
                    
355			Class<?> cl = Class.forName("org.gjt.sp.jedit.View");
                    
356			Method method = cl.getDeclaredMethod("setEditPane", EditPane.class);
                    
504							identity(component), 
                    
505							identity(SwingUtilities.getAncestorOfClass(EditPane.class, component)));
                    
506				}
                    
                
SampleFrame.java https://github.com/jburel/substance.git | Java | 431 lines
                    
51
                    
52public class SampleFrame extends JFrame {
                    
53	protected JButton prev;
                    
57
                    
58	private static class MyListModel extends AbstractListModel {
                    
59		protected List<String> model;
                    
415		Rectangle r = comp.getBounds();
                    
416		System.out.println(comp.getClass().getSimpleName() + " [" + r.x + ","
                    
417				+ r.y + " : " + (r.x + r.width) + "," + (r.y + r.height) + "]");
                    
                
test_populate.py https://github.com/will-moore/openmicroscopy.git | Python | 416 lines
                    
44    ParsingContext, BulkToMapAnnotationContext, DeleteMapAnnotationContext)
                    
45from omero.util.populate_roi import AbstractMeasurementCtx
                    
46from omero.util.populate_roi import AbstractPlateAnalysisCtx
                    
72
                    
73class BasePopulate(lib.ITest):
                    
74
                    
117
                    
118class TestPopulateMetadata(BasePopulate):
                    
119
                    
236
                    
237class MockMeasurementCtx(AbstractMeasurementCtx):
                    
238
                    
316
                    
317class MockPlateAnalysisCtx(AbstractPlateAnalysisCtx):
                    
318
                    
                
ImagenDetachedCriteria.html https://gitlab.com/luisrepo/FormularioCRUD | HTML | 396 lines
                    
51<ul class="navList">
                    
52<li><a href="../orm/ImagenDAO.html" title="class in orm"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
                    
53<li><a href="../orm/ORMConstants.html" title="interface in orm"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
                    
95<div class="subTitle">orm</div>
                    
96<h2 title="Class ImagenDetachedCriteria" class="title">Class ImagenDetachedCriteria</h2>
                    
97</div>
                    
182<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
                    
183<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
                    
184<tr>
                    
201<ul class="blockList">
                    
202<li class="blockList"><a name="methods.inherited.from.class.org.orm.criteria.AbstractORMDetachedCriteria">
                    
203<!--   -->
                    
353<ul class="navList">
                    
354<li><a href="../orm/ImagenDAO.html" title="class in orm"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
                    
355<li><a href="../orm/ORMConstants.html" title="interface in orm"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
                    
                
ConfigurationValidation.cs https://github.com/ngbrown/AutoMapper.git | C# | 497 lines
                    
9    {
                    
10        public class When_testing_a_dto_with_mismatched_members : NonValidatingSpecBase
                    
11        {
                    
11        {
                    
12            public class ModelObject
                    
13            {
                    
17
                    
18            public class ModelDto
                    
19            {
                    
23
                    
24            public class ModelObject2
                    
25            {
                    
484
                    
485            class ConcreteDest : IAbstractDest
                    
486            {
                    
                
eXTra-components-1.xsd https://gitlab.com/dataline/extra-standard | XML Schema | 268 lines
                    
103	</xs:complexType>
                    
104	<xs:complexType name="ClassifiableStringType">
                    
105		<xs:simpleContent>
                    
106			<xs:extension base="xs:string">
                    
107				<xs:attribute name="class" type="SimpleClassType" use="optional"/>
                    
108			</xs:extension>
                    
113			<xs:extension base="xs:string">
                    
114				<xs:attribute name="class" type="SimpleClassType" use="optional"/>
                    
115			</xs:extension>
                    
136        @{code %
                    
137        <xs:complexType name="ElementWithOptionalVersionType" abstract="true">
                    
138            <xs:attribute name="version" type="SupportedVersionsType" use="optional"/>
                    
141    -->
                    
142	<xs:complexType name="ElementWithOptionalVersionType" abstract="true">
                    
143		<xs:attribute name="version" type="AbstractVersionType" use="optional"/>
                    
                
base.php https://gitlab.com/campus-academy/krowkaramel | PHP | 592 lines
                    
10 *
                    
11 * An abstract class for creating new group controls in the panel.
                    
12 *
                    
13 * @since 1.0.0
                    
14 * @abstract
                    
15 */
                    
15 */
                    
16abstract class Group_Control_Base implements Group_Control_Interface {
                    
17
                    
184	/**
                    
185	 * Get group control classes.
                    
186	 *
                    
289
                    
290		$field_args['classes'] = $this->get_base_group_classes() . ' elementor-group-control-' . $control_id;
                    
291
                    
                
WorkbenchWizardElement.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 365 lines
                    
33import org.eclipse.ui.model.WorkbenchAdapter;
                    
34import org.eclipse.ui.plugin.AbstractUIPlugin;
                    
35import org.eclipse.ui.wizards.IWizardCategory;
                    
40 */
                    
41public class WorkbenchWizardElement extends WorkbenchAdapter implements
                    
42        IAdaptable, IPluginContribution, IWizardDescriptor {
                    
67    /**
                    
68     * Create a new instance of this class
                    
69     * 
                    
115     * Create an the instance of the object described by the configuration
                    
116     * element. That is, create the instance of the class the isv supplied in
                    
117     * the extension point.
                    
122        return WorkbenchPlugin.createExtension(configurationElement,
                    
123                IWorkbenchRegistryConstants.ATT_CLASS);
                    
124    }
                    
                
SampleDatabase.java https://gitlab.com/OpenSourceMirror/sourcenav | Java | 321 lines
                    
142     */
                    
143    public final StoredClassCatalog getClassCatalog() {
                    
144
                    
215     * The SecondaryKeyCreator for the SupplierByCity index.  This is an
                    
216     * extension of the abstract class TupleSerialKeyCreator, which implements
                    
217     * SecondaryKeyCreator for the case where the data keys are of the format
                    
254     * The SecondaryKeyCreator for the ShipmentByPart index.  This is an
                    
255     * extension of the abstract class TupleSerialKeyCreator, which implements
                    
256     * SecondaryKeyCreator for the case where the data keys are of the format
                    
288     * The SecondaryKeyCreator for the ShipmentBySupplier index.  This is an
                    
289     * extension of the abstract class TupleSerialKeyCreator, which implements
                    
290     * SecondaryKeyCreator for the case where the data keys are of the format
                    
301        private ShipmentBySupplierKeyCreator(ClassCatalog catalog,
                    
302                                             Class valueClass) {
                    
303            super(catalog, valueClass);
                    
                
Client.php https://gitlab.com/x33n/ampache | PHP | 327 lines
                    
10
                    
11abstract class XBMC_RPC_Client {
                    
12    
                    
116     * the server.
                    
117     * @abstract
                    
118     * @access protected
                    
119     */
                    
120    protected abstract function assertCanConnect();
                    
121    
                    
124     *
                    
125     * Should be used by child classes for any pre-connection logic which is necessary.
                    
126     *
                    
129     * connection successfully.
                    
130     * @abstract
                    
131     * @access protected
                    
                
models.py https://gitlab.com/thomasphillips3/pokemonapp | Python | 480 lines
                    
9
                    
10class DateTimeModel(models.Model):
                    
11
                    
11
                    
12    class Meta:
                    
13        abstract = True
                    
19
                    
20class Ability(DateTimeModel):
                    
21
                    
29
                    
30class Type(DateTimeModel):
                    
31
                    
96
                    
97class TypeChart(DateTimeModel):
                    
98
                    
                
AbstractPlainDatagramSocketImpl.java https://bitbucket.org/chancey/z.git | Java | 352 lines
                    
33/**
                    
34 * Abstract datagram and multicast socket implementation base class.
                    
35 * Note: This is not a public class, so that applets cannot call
                    
42
                    
43abstract class AbstractPlainDatagramSocketImpl extends DatagramSocketImpl
                    
44{
                    
87
                    
88    protected abstract void bind0(int lport, InetAddress laddr)
                    
89        throws SocketException;
                    
149     */
                    
150    protected abstract int getTimeToLive() throws IOException;
                    
151
                    
160     */
                    
161    protected abstract byte getTTL() throws IOException;
                    
162
                    
                
H5Group.cpp https://github.com/b3c/VTK-5.8.git | C++ | 304 lines
                    
27#include "H5Object.h"
                    
28#include "H5AbstractDs.h"
                    
29#include "H5FaccProp.h"
                    
201//      May 2008 - BMR
                    
202//		Class hierarchy is revised to address bugzilla 1068.  Class
                    
203//		AbstractDS and Attribute are moved out of H5Object.  In
                    
203//		AbstractDS and Attribute are moved out of H5Object.  In
                    
204//		addition, member IdComponent::id is moved into subclasses, and
                    
205//		IdComponent::getId now becomes pure virtual function.
                    
                
Console.php https://bitbucket.org/jokusafet/magento2.git | PHP | 446 lines
                    
29 */
                    
30class Mage_Install_Model_Installer_Console extends Mage_Install_Model_Installer_Abstract
                    
31{
                    
361
                    
362        if (!class_exists($modelName)) {
                    
363            $this->addError('Database uninstall is not supported for the ' . ucfirst($dbConfig->model) . '.');
                    
366
                    
367        /** @var $resourceModel Mage_Install_Model_Installer_Db_Abstract */
                    
368        $resourceModel = Mage::getModel($modelName);
                    
                
Allow.php https://github.com/grandison/budo16.git | PHP | 524 lines
                    
61    // Role must be an instance of Core_Model_Item_Abstract or a string relationship type
                    
62    if( !($role instanceof Core_Model_Item_Abstract) && !is_string($role) )
                    
63    {
                    
68    // Owner can do what they want with the resource
                    
69    if( ($role instanceof Core_Model_Item_Abstract && method_exists($resource, 'isOwner') && $resource->isOwner($role)) || $role === 'owner' )
                    
70    {
                    
132      // Get item class
                    
133      $itemClass = Engine_Api::_()->getItemClass($row->role);
                    
134
                    
192      $role_id = 0;
                    
193    } else if( $role instanceof Core_Model_Item_Abstract ) {
                    
194      $role_id = $role->getIdentity();
                    
271    }
                    
272    if( !$role instanceof Core_Model_Item_Abstract ) {
                    
273      return false;
                    
                
TestContainer.java https://github.com/rbodkin/hadoop-common.git | Java | 341 lines
                    
32import java.util.Map.Entry;
                    
33import java.util.AbstractMap.SimpleEntry;
                    
34
                    
60
                    
61public class TestContainer {
                    
62
                    
74      dispatcher.start();
                    
75      EventHandler<LocalizationEvent> localizerBus = mock(EventHandler.class);
                    
76      dispatcher.register(LocalizationEventType.class, localizerBus);
                    
78
                    
79      ContainerLaunchContext ctxt = mock(ContainerLaunchContext.class);
                    
80      ContainerId cId = getMockContainerId(7, 314159265358979L, 4344);
                    
124      dispatcher.start();
                    
125      EventHandler<LocalizationEvent> localizerBus = mock(EventHandler.class);
                    
126      dispatcher.register(LocalizationEventType.class, localizerBus);
                    
                
List.java https://github.com/fethallah/fiji-1.git | Java | 484 lines
                    
7 * published by the Free Software Foundation.  Sun designates this
                    
8 * particular file as subject to the "Classpath" exception as provided
                    
9 * by Sun in the LICENSE file that accompanied this code.
                    
32import java.util.Iterator;
                    
33import java.util.AbstractCollection;
                    
34import java.util.ListIterator;
                    
36
                    
37/** A class for generic linked lists. Links are supposed to be
                    
38 *  immutable, the only exception being the incremental construction of
                    
38 *  immutable, the only exception being the incremental construction of
                    
39 *  lists via ListBuffers.  List is the main container class in
                    
40 *  GJC. Most data structures and algorthms in GJC use lists rather
                    
50 */
                    
51public class List<A> extends AbstractCollection<A> implements java.util.List<A> {
                    
52
                    
                
ast.py https://github.com/vesnican/play.git | Python | 301 lines
                    
6    The `ast` module helps Python applications to process trees of the Python
                    
7    abstract syntax grammar.  The abstract syntax itself might change with
                    
8    each Python release; this module helps to find out programmatically what
                    
206
                    
207class NodeVisitor(object):
                    
208    """
                    
208    """
                    
209    A node visitor base class that walks the abstract syntax tree and calls a
                    
210    visitor function for every node found.  This function may return a value
                    
212
                    
213    This class is meant to be subclassed, with the subclass adding visitor
                    
214    methods.
                    
245    """
                    
246    A :class:`NodeVisitor` subclass that walks the abstract syntax tree and
                    
247    allows modification of nodes.
                    
                
ManyToManyPersister.php https://github.com/maartendekeizer/doctrine2.git | PHP | 310 lines
                    
42        $mapping = $coll->getMapping();
                    
43        $class   = $this->_em->getClassMetadata(get_class($coll->getOwner()));
                    
44        
                    
79        $columns = $mapping['joinTableColumns'];
                    
80        $class   = $this->_em->getClassMetadata(get_class($coll->getOwner()));
                    
81        
                    
115        if ($isComposite) {
                    
116            $class1 = $this->_em->getClassMetadata(get_class($coll->getOwner()));
                    
117            $class2 = $coll->getTypeClass();
                    
154        $mapping     = $coll->getMapping();
                    
155        $class       = $this->_em->getClassMetadata(get_class($coll->getOwner()));
                    
156        $joinTable = $mapping['joinTable'];
                    
182        if (count($mapping['relationToSourceKeyColumns']) > 1) {
                    
183            $sourceClass = $this->_em->getClassMetadata(get_class($mapping->getOwner()));
                    
184            
                    
                
M_BerkeleyDB_DatabaseEnvironment_RepProcessMessage.htm https://github.com/akiernan/omnibus.git | HTML | 58 lines
                    
1<html xmlns:MSHelp="http://msdn.microsoft.com/mshelp" xmlns:mshelp="http://msdn.microsoft.com/mshelp" xmlns:ddue="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:msxsl="urn:schemas-microsoft-com:xslt"><head><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8" /><META NAME="save" CONTENT="history" /><title>RepProcessMessage Method </title><link rel="stylesheet" type="text/css" href="../styles/presentation.css" /><link rel="stylesheet" type="text/css" href="ms-help://Hx/HxRuntime/HxLink.css" /><script type="text/javascript" src="../scripts/EventUtilities.js"> </script><script type="text/javascript" src="../scripts/SplitScreen.js"> </script><script type="text/javascript" src="../scripts/Dropdown.js"> </script><script type="text/javascript" src="../scripts/script_manifold.js"> </script><script type="text/javascript" src="../scripts/script_feedBack.js"> </script><script type="text/javascript" src="../scripts/CheckboxMenu.js"> </script><script type="text/javascript" src="../scripts/CommonUtilities.js"> </script><meta name="container" content="BerkeleyDB" /><meta name="file" content="M_BerkeleyDB_DatabaseEnvironment_RepProcessMessage" /><meta name="guid" content="M_BerkeleyDB_DatabaseEnvironment_RepProcessMessage" /><xml><MSHelp:Attr Name="AssetID" Value="M:BerkeleyDB.DatabaseEnvironment.RepProcessMessage(BerkeleyDB.DatabaseEntry,BerkeleyDB.DatabaseEntry,System.Int32)" /><MSHelp:TOCTitle Title="RepProcessMessage Method " /><MSHelp:RLTitle Title="DatabaseEnvironment.RepProcessMessage Method  (BerkeleyDB)" /><MSHelp:Keyword Index="A" Term="M:BerkeleyDB.DatabaseEnvironment.RepProcessMessage(BerkeleyDB.DatabaseEntry,BerkeleyDB.DatabaseEntry,System.Int32)" /><MSHelp:Keyword Index="A" Term="frlrfBerkeleyDBDatabaseEnvironmentClassRepProcessMessageTopic" /><MSHelp:Keyword Index="K" Term="RepProcessMessage method" /><MSHelp:Keyword Index="K" Term="DatabaseEnvironment.RepProcessMessage method" /><MSHelp:Keyword Index="F" Term="RepProcessMessage" /><MSHelp:Keyword Index="F" Term="DatabaseEnvironment.RepProcessMessage" /><MSHelp:Keyword Index="F" Term="BerkeleyDB.DatabaseEnvironment.RepProcessMessage" /><MSHelp:Attr Name="APIType" Value="Managed" /><MSHelp:Attr Name="APILocation" Value="libdb_dotnet50.dll" /><MSHelp:Attr Name="APIName" Value="BerkeleyDB.DatabaseEnvironment.RepProcessMessage" /><MSHelp:Attr Name="DevLang" Value="CSharp" /><MSHelp:Attr Name="DevLang" Value="VB" /><MSHelp:Attr Name="DevLang" Value="C++" /><MSHelp:Attr Name="Locale" Value="en-us" /><MSHelp:Attr Name="TopicType" Value="kbSyntax" /><MSHelp:Attr Name="TopicType" Value="apiref" /><MSHelp:Attr Name="Abstract" Value="Process an incoming replication message sent by a member of the replication group to the local database environment." /><MSHelp:Attr Name="AssemblyVersion" Value="5.0.18.0" /></xml></head><body><input type="hidden" id="userDataCache" class="userDataStyle" /><input type="hidden" id="hiddenScrollOffset" /><img id="collapseImage" style="display:none; height:0; width:0;" src="../icons/collapse_all.gif" title="Collapse image" /><img id="expandImage" style="display:none; height:0; width:0;" src="../icons/expand_all.gif" title="Expand Image" /><img id="collapseAllImage" style="display:none; height:0; width:0;" src="../icons/collapse_all.gif" /><img id="expandAllImage" style="display:none; height:0; width:0;" src="../icons/expand_all.gif" /><img id="dropDownImage" style="display:none; height:0; width:0;" src="../icons/dropdown.gif" /><img id="dropDownHoverImage" style="display:none; height:0; width:0;" src="../icons/dropdownHover.gif" /><img id="copyImage" style="display:none; height:0; width:0;" src="../icons/copycode.gif" title="Copy image" /><img id="copyHoverImage" style="display:none; height:0; width:0;" src="../icons/copycodeHighlight.gif" title="CopyHover image" /><div id="header"><table id="topTable" cellspacing="0" cellpadding="0"><tr><td><span onclick="ExpandCollapseAll(toggleAllImage)" style="cursor:default;" onkeypress="ExpandCollapseAll_CheckKey(toggleAllImage, event)" tabindex="0"><img ID="toggleAllImage" class="toggleAll" src="../icons/collapse_all.gif" /> <label id="collapseAllLabel" for="toggleAllImage" style="display: none;">Collapse All</label><label id="expandAllLabel" for="toggleAllImage" style="display: none;">Expand All</label> </span><span>    </span><span id="devlangsDropdown" class="filter" tabindex="0"><img id="devlangsDropdownImage" src="../icons/dropdown.gif" /> <label id="devlangsMenuAllLabel" for="devlangsDropdownImage" style="display: none;"><nobr>Code: All </nobr></label><label id="devlangsMenuMultipleLabel" for="devlangsDropdownImage" style="display: none;"><nobr>Code: Multiple </nobr></label><label id="devlangsMenuCSharpLabel" for="devlangsDropdownImage" style="display: none;"><nobr>Code: C# </nobr></label><label id="devlangsMenuVisualBasicLabel" for="devlangsDropdownImage" style="display: none;"><nobr>Code: Visual Basic </nobr></label><label id="devlangsMenuManagedCPlusPlusLabel" for="devlangsDropdownImage" style="display: none;"><nobr>Code: Visual C++ </nobr></label></span></td></tr></table><div id="devlangsMenu"><input id="CSharpCheckbox" type="checkbox" data="CSharp,cs,'persist'" value="on" onClick="SetLanguage(this)" /><label class="checkboxLabel" for="CSharpCheckbox">C#</label><br /><input id="VisualBasicCheckbox" type="checkbox" data="VisualBasic,vb,'persist'" value="on" onClick="SetLanguage(this)" /><label class="checkboxLabel" for="VisualBasicCheckbox">Visual Basic</label><br /><input id="ManagedCPlusPlusCheckbox" type="checkbox" data="ManagedCPlusPlus,cpp,'persist'" value="on" onClick="SetLanguage(this)" /><label class="checkboxLabel" for="ManagedCPlusPlusCheckbox">Visual C++</label><br /></div><table id="bottomTable" cellpadding="0" cellspacing="0"><tr id="headerTableRow1"><td align="left"><span id="runningHeaderText">Berkeley DB .NET API Documentation</span></td></tr><tr id="headerTableRow2"><td align="left"><span id="nsrTitle">DatabaseEnvironment<span class="languageSpecificText"><span class="cs">.</span><span class="vb">.</span><span class="cpp">::</span><span class="nu">.</span></span>RepProcessMessage Method </span></td></tr><tr id="headerTableRow3"><td align="left"><a href="T_BerkeleyDB_DatabaseEnvironment.htm">DatabaseEnvironment Class</a>  <a href="#seeAlsoToggle" onclick="OpenSection(seeAlsoToggle)">See Also</a>  
                    
2  <span id="headfeedbackarea" class="feedbackhead">
                    
14    <b>Assembly:</b>
                    
15   <span sdata="assembly">libdb_dotnet50</span> (in libdb_dotnet50.dll) Version: 5.0.18.0<h1 class="heading"><span onclick="ExpandCollapse(syntaxToggle)" style="cursor:default;" onkeypress="ExpandCollapse_CheckKey(syntaxToggle, event)" tabindex="0"><img id="syntaxToggle" class="toggle" name="toggleSwitch" src="../icons/collapse_all.gif" />Syntax</span></h1><div id="syntaxSection" class="section" name="collapseableSection" style=""><div id="syntaxCodeBlocks" class="code"><span codeLanguage="CSharp"><table><tr><th>C#</th></tr><tr><td><pre xml:space="preserve"><span class="keyword">public</span> <a href="T_BerkeleyDB_RepProcMsgResult.htm">RepProcMsgResult</a> <span class="identifier">RepProcessMessage</span>(
                    
16	<a href="T_BerkeleyDB_DatabaseEntry.htm">DatabaseEntry</a> <span class="parameter">control</span>,
                    
27	<a href="http://msdn2.microsoft.com/en-us/library/td2s409d" target="_blank">int</a> <span class="parameter">envid</span>
                    
28)</pre></td></tr></table></span></div><div id="parameters"><h4 class="subHeading">Parameters</h4><dl paramName="control"><dt><span class="parameter">control</span></dt><dd>Type: <a href="T_BerkeleyDB_DatabaseEntry.htm">BerkeleyDB<span class="languageSpecificText"><span class="cs">.</span><span class="vb">.</span><span class="cpp">::</span><span class="nu">.</span></span>DatabaseEntry</a><br />
                    
29            A copy of the control parameter specified by Berkeley DB on the
                    
30            sending environment.
                    
31            </dd></dl><dl paramName="rec"><dt><span class="parameter">rec</span></dt><dd>Type: <a href="T_BerkeleyDB_DatabaseEntry.htm">BerkeleyDB<span class="languageSpecificText"><span class="cs">.</span><span class="vb">.</span><span class="cpp">::</span><span class="nu">.</span></span>DatabaseEntry</a><br />
                    
32            A copy of the rec parameter specified by Berkeley DB on the sending
                    
33            environment.
                    
34            </dd></dl><dl paramName="envid"><dt><span class="parameter">envid</span></dt><dd>Type: <a href="http://msdn2.microsoft.com/en-us/library/td2s409d" target="_blank">System<span class="languageSpecificText"><span class="cs">.</span><span class="vb">.</span><span class="cpp">::</span><span class="nu">.</span></span>Int32</a><br />
                    
35            The local identifier that corresponds to the environment that sent
                    
56            </p>
                    
57      </div><h1 class="heading"><span onclick="ExpandCollapse(seeAlsoToggle)" style="cursor:default;" onkeypress="ExpandCollapse_CheckKey(seeAlsoToggle, event)" tabindex="0"><img id="seeAlsoToggle" class="toggle" name="toggleSwitch" src="../icons/collapse_all.gif" />See Also</span></h1><div id="seeAlsoSection" class="section" name="collapseableSection" style=""><div class="seeAlsoStyle"><a href="T_BerkeleyDB_DatabaseEnvironment.htm">DatabaseEnvironment Class</a></div><div class="seeAlsoStyle"><a href="N_BerkeleyDB.htm">BerkeleyDB Namespace</a></div></div></div><div id="footer"><div class="footerLine"><img width="100%" height="3px" src="../icons/footer.gif" title="Footer image" /></div><A NAME="feedback"></A><span id="fb" class="feedbackcss"> </span>
                    
58Report Feedback on this item in the Oracle Technology Network Forum <p />Copyright (c) 1996-2009 Oracle. All rights reserved.</div></div></body></html>
                    
                
TerrainLodControl.java https://bitbucket.org/grimm/rpg-tools.git | Java | 407 lines
                    
43import com.jme3.scene.Spatial;
                    
44import com.jme3.scene.control.AbstractControl;
                    
45import com.jme3.scene.control.Control;
                    
77 */
                    
78public class TerrainLodControl extends AbstractControl {
                    
79
                    
237                } catch (InterruptedException ex) {
                    
238                    Logger.getLogger(TerrainLodControl.class.getName()).log(Level.SEVERE, null, ex);
                    
239                } catch (ExecutionException ex) {
                    
239                } catch (ExecutionException ex) {
                    
240                    Logger.getLogger(TerrainLodControl.class.getName()).log(Level.SEVERE, null, ex);
                    
241                } finally {
                    
346     */
                    
347    protected class UpdateLOD implements Callable<HashMap<String,UpdatedTerrainPatch>> {
                    
348        protected List<Vector3f> camLocations;
                    
                
DroppableBehavior.java https://github.com/dilgerma/core.git | Java | 405 lines
                    
22 */
                    
23public class DroppableBehavior extends AbstractDragDropBehavior {
                    
24
                    
155	 * jQuery documentation for a detailled description of this property.
                    
156	 * @param hoverClass the CSS class' name
                    
157	 * @return this object
                    
158	 */
                    
159	public DroppableBehavior setHoverClass(final String hoverClass) {
                    
160		if (hoverClass == null)
                    
166	public DroppableBehavior setHoverClass(final AjaxRequestTarget target, final String hoverClass) {
                    
167		setHoverClass(hoverClass);
                    
168		if (hoverClass != null)
                    
168		if (hoverClass != null)
                    
169			target.appendJavascript("jQuery('#" + getComponent().getMarkupId() + "').droppable('option','hoverClass','" + hoverClass + "');");
                    
170		else
                    
                
TransportSingleCustomOperationAction.java https://bitbucket.org/dkartaschew/elasticsearch.git | Java | 370 lines
                    
44 */
                    
45public abstract class TransportSingleCustomOperationAction<Request extends SingleCustomOperationRequest, Response extends ActionResponse> extends TransportAction<Request, Response> {
                    
46
                    
72
                    
73    protected abstract String transportAction();
                    
74
                    
74
                    
75    protected abstract String executor();
                    
76
                    
79     */
                    
80    protected abstract ShardsIterator shards(ClusterState state, Request request);
                    
81
                    
81
                    
82    protected abstract Response shardOperation(Request request, int shardId) throws ElasticSearchException;
                    
83
                    
                
PersistentIdentifierBag.java https://github.com/CodingFabian/hibernate-core.git | Java | 430 lines
                    
55 */
                    
56public class PersistentIdentifierBag extends AbstractPersistentCollection implements List {
                    
57
                    
                
XMLSchemaValidatorHandler.java https://bitbucket.org/pizzafactory/pf-gcc.git | Java | 393 lines
                    
3
                    
4This file is part of GNU Classpath.
                    
5
                    
5
                    
6GNU Classpath is free software; you can redistribute it and/or modify
                    
7it under the terms of the GNU General Public License as published by
                    
10
                    
11GNU Classpath is distributed in the hope that it will be useful, but
                    
12WITHOUT ANY WARRANTY; without even the implied warranty of
                    
16You should have received a copy of the GNU General Public License
                    
17along with GNU Classpath; see the file COPYING.  If not, write to the
                    
18Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
                    
65 */
                    
66final class XMLSchemaValidatorHandler
                    
67  extends ValidatorHandler
                    
                
BridgeAdd.java https://github.com/tomathome/jboss-as.git | Java | 212 lines
                    
35import org.hornetq.core.server.HornetQServer;
                    
36import org.jboss.as.controller.AbstractAddStepHandler;
                    
37import org.jboss.as.controller.AttributeDefinition;
                    
53 */
                    
54public class BridgeAdd extends AbstractAddStepHandler implements DescriptionProvider {
                    
55
                    
111
                    
112            HornetQServerControl serverControl = HornetQServer.class.cast(hqService.getValue()).getHornetQServerControl();
                    
113            createBridge(name, bridgeConfig, serverControl);
                    
141        final String filterString = filterNode.isDefined() ? filterNode.asString() : null;
                    
142        final ModelNode transformerNode = CommonAttributes.TRANSFORMER_CLASS_NAME.validateResolvedOperation(model);
                    
143        final String transformerClassName = transformerNode.isDefined() ? transformerNode.asString() : null;
                    
157        if (discoveryGroupName != null) {
                    
158            return new BridgeConfiguration(name, queueName, forwardingAddress, filterString, transformerClassName,
                    
159                              retryInterval, retryIntervalMultiplier, reconnectAttempts, useDuplicateDetection,
                    
                
ProjectServiceDTO.java https://gitlab.com/ytarasov/task-manager-52 | Java | 345 lines
                    
17
                    
18public final class ProjectServiceDTO
                    
19        extends AbstractUserOwnedServiceDTO<ProjectDTO, ProjectRepositoryDTO> implements IProjectServiceDTO {
                    
                
Mssql.php https://bitbucket.org/haichau59/manga.git | PHP | 423 lines
                    
24/**
                    
25 * @see Zend_Db_Adapter_Pdo_Abstract
                    
26 */
                    
26 */
                    
27//require_once 'Zend/Db/Adapter/Pdo/Abstract.php';
                    
28
                    
30/**
                    
31 * Class for connecting to Microsoft SQL Server databases and performing common operations.
                    
32 *
                    
38 */
                    
39class Zend_Db_Adapter_Pdo_Mssql extends Zend_Db_Adapter_Pdo_Abstract
                    
40{
                    
143     *
                    
144     * It is necessary to override the abstract PDO transaction functions here, as
                    
145     * the PDO driver for MSSQL does not support transactions.
                    
                
Routes.hs https://bitbucket.org/ajnsit/wai-routes.git | Haskell | 299 lines
                    
1{-# LANGUAGE MultiParamTypeClasses #-}
                    
2{-# LANGUAGE TypeFamilies #-}
                    
54    , Env(..)
                    
55    , RequestData            -- | An abstract representation of the request data. You can get the wai request object by using `waiReq`
                    
56    , waiReq                 -- | Extract the wai `Request` object from `RequestData`
                    
71-- Network.Wai.Middleware.Routes
                    
72import Network.Wai.Middleware.Routes.Class (Route, RenderRoute(..), ParseRoute(..), RouteAttrs(..))
                    
73import Network.Wai.Middleware.Routes.Parse (parseRoutes, parseRoutesNoCheck, parseRoutesFile, parseRoutesFileNoCheck, parseType)
                    
88
                    
89-- An abstract request
                    
90data RequestData master = RequestData
                    
156  -- Check if this is a classname or a type
                    
157  let contract = maybe (error $ "Unknown typeclass " ++ show constraint) (getContract master) className
                    
158  return [InstanceD [contract]
                    
165#else
                    
166      ClassP className [VarT master]
                    
167#endif
                    
                
CSSOMValue.AbstractComponent.html https://bitbucket.org/llythiumn/cmput206.git | HTML | 244 lines
                    
41  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
                    
42  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../org/apache/batik/css/dom/CSSOMValue.AbstractComponent.html" title="class in org.apache.batik.css.dom"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
                    
43  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
                    
89<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
                    
90Packages that use <A HREF="../../../../../../org/apache/batik/css/dom/CSSOMValue.AbstractComponent.html" title="class in org.apache.batik.css.dom">CSSOMValue.AbstractComponent</A></FONT></TH>
                    
91</TR>
                    
102<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
                    
103Uses of <A HREF="../../../../../../org/apache/batik/css/dom/CSSOMValue.AbstractComponent.html" title="class in org.apache.batik.css.dom">CSSOMValue.AbstractComponent</A> in <A HREF="../../../../../../org/apache/batik/css/dom/package-summary.html">org.apache.batik.css.dom</A></FONT></TH>
                    
104</TR>
                    
110<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
                    
111<TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../../org/apache/batik/css/dom/CSSOMValue.AbstractComponent.html" title="class in org.apache.batik.css.dom">CSSOMValue.AbstractComponent</A> in <A HREF="../../../../../../org/apache/batik/css/dom/package-summary.html">org.apache.batik.css.dom</A></FONT></TH>
                    
112</TR>
                    
201  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
                    
202  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../../org/apache/batik/css/dom/CSSOMValue.AbstractComponent.html" title="class in org.apache.batik.css.dom"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
                    
203  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
                    
                
package-summary.html https://github.com/djKianoosh/jQuery_workshop.git | HTML | 223 lines
                    
42  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD>
                    
43  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
                    
44  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
                    
44  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
                    
45  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
                    
46  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
                    
117<TD WIDTH="15%"><B><A HREF="../../../../../org/eclipse/jetty/rewrite/handler/PatternRule.html" title="class in org.eclipse.jetty.rewrite.handler">PatternRule</A></B></TD>
                    
118<TD>Abstract rule that use a <A HREF="../../../../../org/eclipse/jetty/http/PathMap.html" title="class in org.eclipse.jetty.http"><CODE>PathMap</CODE></A> for pattern matching.</TD>
                    
119</TR>
                    
180  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD>
                    
181  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
                    
182  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
                    
209<NOSCRIPT>
                    
210  <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
                    
211</NOSCRIPT>
                    
                
UsuarioFacadeREST.java https://bitbucket.org/franjs88/servicio-rest-calendario.git | Java | 349 lines
                    
31@Path("usuarios")
                    
32public class UsuarioFacadeREST extends AbstractFacade<Usuario> {
                    
33
                    
37    public UsuarioFacadeREST() {
                    
38        super(Usuario.class);
                    
39    }
                    
                
AttributeSourceContainer.html https://bitbucket.org/bartekkroczek/aion-project-management-support-system.git | HTML | 264 lines
                    
41  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
                    
42  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
                    
43  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/AttributeSourceContainer.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
                    
70<NOSCRIPT>
                    
71  <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
                    
72</NOSCRIPT>
                    
97<DL>
                    
98<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../../org/hibernate/metamodel/source/hbm/AbstractEntitySourceImpl.html" title="class in org.hibernate.metamodel.source.hbm">AbstractEntitySourceImpl</A>, <A HREF="../../../../../org/hibernate/metamodel/source/annotations/entity/ComponentAttributeSourceImpl.html" title="class in org.hibernate.metamodel.source.annotations.entity">ComponentAttributeSourceImpl</A>, <A HREF="../../../../../org/hibernate/metamodel/source/hbm/ComponentAttributeSourceImpl.html" title="class in org.hibernate.metamodel.source.hbm">ComponentAttributeSourceImpl</A>, <A HREF="../../../../../org/hibernate/metamodel/source/hbm/CompositePluralAttributeElementSourceImpl.html" title="class in org.hibernate.metamodel.source.hbm">CompositePluralAttributeElementSourceImpl</A>, <A HREF="../../../../../org/hibernate/metamodel/source/annotations/entity/EntitySourceImpl.html" title="class in org.hibernate.metamodel.source.annotations.entity">EntitySourceImpl</A>, <A HREF="../../../../../org/hibernate/metamodel/source/annotations/entity/RootEntitySourceImpl.html" title="class in org.hibernate.metamodel.source.annotations.entity">RootEntitySourceImpl</A>, <A HREF="../../../../../org/hibernate/metamodel/source/hbm/RootEntitySourceImpl.html" title="class in org.hibernate.metamodel.source.hbm">RootEntitySourceImpl</A>, <A HREF="../../../../../org/hibernate/metamodel/source/annotations/entity/SubclassEntitySourceImpl.html" title="class in org.hibernate.metamodel.source.annotations.entity">SubclassEntitySourceImpl</A>, <A HREF="../../../../../org/hibernate/metamodel/source/hbm/SubclassEntitySourceImpl.html" title="class in org.hibernate.metamodel.source.hbm">SubclassEntitySourceImpl</A></DD>
                    
99</DL>
                    
216  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
                    
217  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/AttributeSourceContainer.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
                    
218  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
                    
239  if(window==top) {
                    
240    document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
                    
241  }
                    
                
AutoInstallIntegration.java https://github.com/aminorex/jboss-as.git | Java | 313 lines
                    
44import org.jboss.modules.ModuleLoader;
                    
45import org.jboss.msc.service.AbstractService;
                    
46import org.jboss.msc.service.ServiceBuilder;
                    
62import org.jboss.osgi.spi.util.BundleInfo;
                    
63import org.jboss.osgi.vfs.AbstractVFS;
                    
64import org.jboss.osgi.vfs.VirtualFile;
                    
77 */
                    
78class AutoInstallIntegration extends AbstractService<AutoInstallProvider> implements AutoInstallProvider, Observer {
                    
79
                    
94        ServiceBuilder<?> builder = target.addService(Services.AUTOINSTALL_PROVIDER, service);
                    
95        builder.addDependency(ServerEnvironmentService.SERVICE_NAME, ServerEnvironment.class, service.injectedEnvironment);
                    
96        builder.addDependency(SubsystemState.SERVICE_NAME, SubsystemState.class, service.injectedSubsystemState);
                    
96        builder.addDependency(SubsystemState.SERVICE_NAME, SubsystemState.class, service.injectedSubsystemState);
                    
97        builder.addDependency(Services.BUNDLE_MANAGER, BundleManagerService.class, service.injectedBundleManager);
                    
98        builder.addDependency(Services.SYSTEM_BUNDLE, Bundle.class, service.injectedSystemBundle);
                    
                
PutObjectRequest.java https://gitlab.com/github-cloud-corp/aws-sdk-java | Java | 320 lines
                    
84 */
                    
85public class PutObjectRequest extends AbstractPutObjectRequest implements Serializable {
                    
86
                    
187    @SuppressWarnings("unchecked")
                    
188    public PutObjectRequest withStorageClass(String storageClass) {
                    
189        return super.withStorageClass(storageClass);
                    
193    @SuppressWarnings("unchecked")
                    
194    public PutObjectRequest withStorageClass(StorageClass storageClass) {
                    
195        return super.withStorageClass(storageClass);
                    
                
Properties.php https://gitlab.com/techniconline/kmc | PHP | 367 lines
                    
8 */
                    
9abstract class PHPExcel_Properties
                    
10{
                    
                
ObjectBank.java https://github.com/thisandagain/stanford-ner.git | Java | 382 lines
                    
2
                    
3import edu.stanford.nlp.util.AbstractIterator;
                    
4import edu.stanford.nlp.util.Function;
                    
16/**
                    
17 * The ObjectBank class is designed to make it easy to change the format/source
                    
18 * of data read in by other classes and to standardize how data is read in
                    
18 * of data read in by other classes and to standardize how data is read in
                    
19 * javaNLP classes.
                    
20 * This should make reuse of existing code (by non-authors of the code)
                    
22 * look for the data and how to turn it into Objects, and then use the new
                    
23 * ObjectBank in the class.  This will also make it easier to reuse code for
                    
24 * reading in the same data.
                    
320   */
                    
321  class OBIterator extends AbstractIterator<E> {
                    
322    Iterator<Reader> readerIterator;
                    
                
Analyzer.php https://github.com/KaRLsM/SIFO.git | PHP | 481 lines
                    
385     *
                    
386     * @param PHP_Depend_Code_AbstractClassOrInterface $declaringClass The declaring
                    
387     *        or context class.
                    
387     *        or context class.
                    
388     * @param PHP_Depend_Code_AbstractClassOrInterface $coupledClass   The class that
                    
389     *        is used by the declaring class or <b>null</b> when no class is defined.
                    
394    private function _calculateClassOrInterfaceCoupling(
                    
395        PHP_Depend_Code_AbstractClassOrInterface $declaringClass,
                    
396        PHP_Depend_Code_AbstractClassOrInterface $coupledClass = null
                    
427     *
                    
428     * @param PHP_Depend_Code_AbstractClassOrInterface $classOrInterface The
                    
429     *        currently visited/traversed class or interface instance.
                    
434    private function _initClassOrInterfaceDependencyMap(
                    
435        PHP_Depend_Code_AbstractClassOrInterface $classOrInterface
                    
436    ) {
                    
                
juce_ApplicationBase.h https://github.com/plasm-language/pyplasm.git | C Header | 282 lines
                    
30/**
                    
31    Abstract base class for application classes.
                    
32
                    
32
                    
33    Note that in the juce_gui_basics module, there's a utility class JUCEApplication
                    
34    which derives from JUCEApplicationBase, and takes care of a few chores. Most
                    
34    which derives from JUCEApplicationBase, and takes care of a few chores. Most
                    
35    of the time you'll want to derive your class from JUCEApplication rather than
                    
36    using JUCEApplicationBase directly, but if you're not using the juce_gui_basics
                    
36    using JUCEApplicationBase directly, but if you're not using the juce_gui_basics
                    
37    module then you might need to go straight to this base class.
                    
38
                    
38
                    
39    Any application that wants to run an event loop must declare a subclass of
                    
40    JUCEApplicationBase, and implement its various pure virtual methods.
                    
                
MappingDslTests.groovy https://github.com/jabley/grails.git | Groovy | 469 lines
                    
11
                    
12class MappingDslTests extends AbstractGrailsHibernateTests {
                    
13
                    
102    void testLazyinessControl() {
                    
103        def personClass = ga.getDomainClass("PersonDSL")
                    
104        def p = personClass.newInstance()
                    
207    void testOneToOneForeignKeyMapping() {
                    
208        def personClass = ga.getDomainClass("MappedPerson").clazz
                    
209        def addressClass = ga.getDomainClass("MappedAddress").clazz
                    
264        def partnerClass = ga.getDomainClass("MappedPartner").clazz
                    
265        def groupClass = ga.getDomainClass("MappedGroup").clazz
                    
266
                    
294     def personClass = ga.getDomainClass("MappedPerson").clazz
                    
295     def childClass = ga.getDomainClass("MappedChild").clazz
                    
296
                    
                
ColumnRefImpl.java https://bitbucket.org/rsaqc/netbeans-soa.git | Java | 353 lines
                    
19 * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
                    
20 * particular file as subject to the "Classpath" exception as provided
                    
21 * by Oracle in the GPL Version 2 section of the License file that
                    
63 */
                    
64public class ColumnRefImpl extends AbstractSQLObject implements ColumnRef {
                    
65
                    
147    /**
                    
148     * @see org.netbeans.modules.sql.framework.model.impl.AbstractDBColumn#equals(java.lang.Object)
                    
149     */
                    
217    /**
                    
218     * @see org.netbeans.modules.sql.framework.model.impl.AbstractDBColumn#hashCode
                    
219     */
                    
                
AbstractEvent.h https://github.com/jehc/openFrameworks.git | C Header | 340 lines
                    
9//
                    
10// Definition of the AbstractEvent class.
                    
11//
                    
53
                    
54template <class TArgs, class TStrategy, class TDelegate, class TMutex = FastMutex> 
                    
55class AbstractEvent
                    
55class AbstractEvent
                    
56	/// An AbstractEvent is the super-class of all events. 
                    
57	/// It works similar to the way C# handles notifications (aka events in C#).
                    
60	/// the template parameter TArgs. The TStrategy parameter must be a subclass 
                    
61	/// of NotificationStrategy. The parameter TDelegate can either be a subclass of AbstractDelegate
                    
62	/// or of PriorityAbstractDelegate. 
                    
332	AbstractEvent(const AbstractEvent& other);
                    
333	AbstractEvent& operator = (const AbstractEvent& other);
                    
334};
                    
                
SimpleJdbcClinic.java https://bitbucket.org/wenner/spring-samples.git | Java | 341 lines
                    
38 *
                    
39 * <p>This class uses Java 5 language features and the {@link SimpleJdbcTemplate}
                    
40 * plus {@link SimpleJdbcInsert}. It also takes advantage of classes like
                    
44 *
                    
45 * <p>SimpleJdbcClinic is a rewrite of the AbstractJdbcClinic which was the base
                    
46 * class for JDBC implementations of the Clinic interface for Spring 2.0.
                    
56@ManagedResource("petclinic:type=Clinic")
                    
57public class SimpleJdbcClinic implements Clinic, SimpleJdbcClinicMBean {
                    
58
                    
58
                    
59	private final Logger logger = LoggerFactory.getLogger(getClass());
                    
60
                    
99					"SELECT id, first_name, last_name FROM vets ORDER BY last_name,first_name",
                    
100					ParameterizedBeanPropertyRowMapper.newInstance(Vet.class)));
                    
101
                    
                
TileTank.java https://gitlab.com/MineYourMind/EnderIO | Java | 400 lines
                    
13import net.minecraftforge.fluids.IFluidHandler;
                    
14import crazypants.enderio.machine.AbstractMachineEntity;
                    
15import crazypants.enderio.machine.IoMode;
                    
20
                    
21public class TileTank extends AbstractMachineEntity implements IFluidHandler {
                    
22
                    
                
Economy_CurrencyCore.java https://gitlab.com/MineYourMind/Vault | Java | 304 lines
                    
23
                    
24import net.milkbowl.vault.economy.AbstractEconomy;
                    
25import net.milkbowl.vault.economy.EconomyResponse;
                    
35
                    
36public class Economy_CurrencyCore extends AbstractEconomy {
                    
37
                    
49            Plugin currencyPlugin = plugin.getServer().getPluginManager().getPlugin("CurrencyCore");
                    
50            if(currencyPlugin != null && currencyPlugin.getClass().getName().equals("is.currency.Currency")) {
                    
51                this.currency = (Currency) currencyPlugin;
                    
56
                    
57    public class EconomyServerListener implements Listener {
                    
58
                    
69                
                    
70                if(currencyPlugin.getDescription().getName().equals("CurrencyCore") && currencyPlugin.getClass().getName().equals("is.currency.Currency")) {
                    
71                    this.economy.currency = (Currency) currencyPlugin;
                    
                
translation.h https://gitlab.com/Hexexpeck/dolphin-emulator | C Header | 329 lines
                    
49
                    
50class WXDLLIMPEXP_FWD_BASE wxArrayString;
                    
51class WXDLLIMPEXP_FWD_BASE wxTranslationsLoader;
                    
51class WXDLLIMPEXP_FWD_BASE wxTranslationsLoader;
                    
52class WXDLLIMPEXP_FWD_BASE wxLocale;
                    
53
                    
53
                    
54class wxPluralFormsCalculator;
                    
55wxDECLARE_SCOPED_PTR(wxPluralFormsCalculator, wxPluralFormsCalculatorPtr)
                    
60
                    
61class WXDLLIMPEXP_BASE wxMsgCatalog
                    
62{
                    
94    wxMsgCatalog *m_pNext;
                    
95    friend class wxTranslations;
                    
96
                    
                
Type.php https://gitlab.com/crazybutterfly815/magento2 | PHP | 386 lines
                    
38 */
                    
39class Type extends \Magento\Framework\Model\AbstractModel
                    
40{
                    
88     * @param \Magento\Framework\Validator\UniversalFactory $universalFactory
                    
89     * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource
                    
90     * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection
                    
100        \Magento\Framework\Validator\UniversalFactory $universalFactory,
                    
101        \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null,
                    
102        \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null,
                    
119    {
                    
120        $this->_init(\Magento\Eav\Model\ResourceModel\Entity\Type::class);
                    
121    }
                    
365     *
                    
366     * @return \Magento\Framework\Model\ResourceModel\AbstractResource
                    
367     */
                    
                
tests.py https://github.com/theosp/google_appengine.git | Python | 314 lines
                    
110        """
                    
111        All base classes must be non-abstract
                    
112        """
                    
113        def build_abc():
                    
114            class NoAbstract(Abstract):
                    
115                class Meta:
                    
120        """
                    
121        The proxy must actually have one concrete base class
                    
122        """
                    
123        def build_no_cbc():
                    
124            class TooManyBases(Person, Abstract):
                    
125                class Meta:
                    
130        def build_no_base_classes():
                    
131            class NoBaseClasses(models.Model):
                    
132                class Meta:
                    
                
backup_structure_step.class.php https://gitlab.com/unofficial-mirrors/moodle | PHP | 264 lines
                    
25/**
                    
26 * Abstract class defining the needed stuff to backup one @backup_structure
                    
27 *
                    
29 */
                    
30abstract class backup_structure_step extends backup_step {
                    
31
                    
154            $classname = 'backup_' . $plugintype . '_' . $name . '_plugin';
                    
155            $backupfile = $plugindir . '/backup/moodle2/' . $classname . '.class.php';
                    
156            if (file_exists($backupfile)) {
                    
226        $parentfile = core_component::get_component_directory($plugintype . '_' . $pluginname) .
                    
227            '/backup/moodle2/' . $parentclass . '.class.php';
                    
228        if (file_exists($parentfile)) {
                    
235            $classname = 'backup_' . $subplugintype . '_' . $name . '_subplugin';
                    
236            $backupfile = $subpluginsdir . '/backup/moodle2/' . $classname . '.class.php';
                    
237            if (file_exists($backupfile)) {
                    
                
Client.scala https://github.com/joshlong/akka.git | Scala | 364 lines
                    
27
                    
28class RemoteClientMessageBufferException(message: String, cause: Throwable) extends AkkaException(message, cause) {
                    
29  def this(msg: String) = this(msg, null)
                    
32/**
                    
33 * This is the abstract baseclass for netty remote clients, currently there's only an
                    
34 * ActiveRemoteClient, but others could be feasible, like a PassiveRemoteClient that
                    
36 */
                    
37abstract class RemoteClient private[akka] (
                    
38  val netty: NettyRemoteTransport,
                    
99 */
                    
100class ActiveRemoteClient private[akka] (
                    
101  netty: NettyRemoteTransport,
                    
156    runSwitch switchOn {
                    
157      openChannels = new DefaultDisposableChannelGroup(classOf[RemoteClient].getName)
                    
158
                    
                
ReturnTypeSubProcessor.java https://github.com/vazexqi/CodingSpectator.git | Java | 337 lines
                    
22import org.eclipse.jdt.core.dom.ASTVisitor;
                    
23import org.eclipse.jdt.core.dom.AbstractTypeDeclaration;
                    
24import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration;
                    
24import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration;
                    
25import org.eclipse.jdt.core.dom.AnonymousClassDeclaration;
                    
26import org.eclipse.jdt.core.dom.Block;
                    
60
                    
61public class ReturnTypeSubProcessor {
                    
62
                    
62
                    
63	private static class ReturnStatementCollector extends ASTVisitor {
                    
64		private ArrayList fResult= new ArrayList();
                    
92
                    
93		public boolean visit(AnonymousClassDeclaration node) {
                    
94			return false;
                    
                
SimPukUnlockScreen.java https://github.com/Kali-/android_frameworks_base.git | Java | 427 lines
                    
42 */
                    
43public class SimPukUnlockScreen extends LinearLayout implements KeyguardScreen,
                    
44        View.OnClickListener, View.OnFocusChangeListener {
                    
148     */
                    
149    private abstract class CheckSimPuk extends Thread {
                    
150
                    
157
                    
158        abstract void onSimLockChangedResponse(boolean success);
                    
159
                    
329    /**
                    
330     * Helper class to handle input from touch dialer.  Only relevant when
                    
331     * the keyboard is shut.
                    
332     */
                    
333    private class TouchInput implements View.OnClickListener {
                    
334        private TextView mZero;
                    
                
yaf-router.getcurrentroute.html https://bitbucket.org/thncr/manuals.git | HTML | 111 lines
                    
15  <h1 class="refname">Yaf_Router::getCurrentRoute</h1>
                    
16  <p class="verinfo">(Yaf &gt;=1.0.0)</p><p class="refpurpose"><span class="refname">Yaf_Router::getCurrentRoute</span> &mdash; <span class="dc-title">Get the effective route name</span></p>
                    
17
                    
22  <div class="methodsynopsis dc-description">
                    
23   <span class="modifier">public</span> <span class="type">string</span> <span class="methodname"><strong>Yaf_Router::getCurrentRoute</strong></span>
                    
24    ( <span class="methodparam">void</span>
                    
68<div class="phpcode"><code><span style="color: #000000">
                    
69<span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">class&nbsp;</span><span style="color: #0000BB">DummyPlugin&nbsp;</span><span style="color: #007700">extends&nbsp;</span><span style="color: #0000BB">Yaf_Plugin_Abstract&nbsp;</span><span style="color: #007700">{<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;function&nbsp;</span><span style="color: #0000BB">routerShutdown</span><span style="color: #007700">(</span><span style="color: #0000BB">Yaf_Request_Abstract&nbsp;$request</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">Yaf_Response_Abstract&nbsp;$response</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">Yaf_Dispatcher</span><span style="color: #007700">::</span><span style="color: #0000BB">getInstance</span><span style="color: #007700">()-&gt;</span><span style="color: #0000BB">getRouter</span><span style="color: #007700">()-&gt;</span><span style="color: #0000BB">getCurrentRoute</span><span style="color: #007700">());<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br /></span><span style="color: #0000BB">?&gt;<br /></span>?&gt;</span>
                    
70</code></div>
                    
99   <li class="member"><a href="class.yaf-bootstrap-abstract.html" class="classname">Yaf_Bootstrap_Abstract</a></li>
                    
100   <li class="member"><a href="class.yaf-plugin-abstract.html" class="classname">Yaf_Plugin_Abstract</a></li>
                    
101   <li class="member"> <span class="methodname"><a href="yaf-router.addroute.html" class="methodname" rel="rdfs-seeAlso">Yaf_Router::addRoute()</a> - Add new Route into Router</span></li>
                    
108 <div class="next" style="text-align: right; float: right;"><a href="yaf-router.getroute.html">Yaf_Router::getRoute</a></div>
                    
109 <div class="up"><a href="class.yaf-router.html">Yaf_Router</a></div>
                    
110 <div class="home"><a href="index.html">PHP Manual</a></div>
                    
                
ContinuableRecordOutput.html https://gitlab.com/fabi.gjuzi/Portfolio | HTML | 242 lines
                    
107<td class="colFirst"><code>void</code></td>
                    
108<td class="colLast"><span class="strong">NameRecord.</span><code><strong><a href="../../../../../../../org/apache/poi/hssf/record/NameRecord.html#serialize(org.apache.poi.hssf.record.cont.ContinuableRecordOutput)">serialize</a></strong>(<a href="../../../../../../../org/apache/poi/hssf/record/cont/ContinuableRecordOutput.html" title="class in org.apache.poi.hssf.record.cont">ContinuableRecordOutput</a>&nbsp;out)</code>
                    
109<div class="block">NameRecord can span into</div>
                    
113<td class="colFirst"><code>protected void</code></td>
                    
114<td class="colLast"><span class="strong">StringRecord.</span><code><strong><a href="../../../../../../../org/apache/poi/hssf/record/StringRecord.html#serialize(org.apache.poi.hssf.record.cont.ContinuableRecordOutput)">serialize</a></strong>(<a href="../../../../../../../org/apache/poi/hssf/record/cont/ContinuableRecordOutput.html" title="class in org.apache.poi.hssf.record.cont">ContinuableRecordOutput</a>&nbsp;out)</code>&nbsp;</td>
                    
115</tr>
                    
117<td class="colFirst"><code>protected void</code></td>
                    
118<td class="colLast"><span class="strong">TextObjectRecord.</span><code><strong><a href="../../../../../../../org/apache/poi/hssf/record/TextObjectRecord.html#serialize(org.apache.poi.hssf.record.cont.ContinuableRecordOutput)">serialize</a></strong>(<a href="../../../../../../../org/apache/poi/hssf/record/cont/ContinuableRecordOutput.html" title="class in org.apache.poi.hssf.record.cont">ContinuableRecordOutput</a>&nbsp;out)</code>&nbsp;</td>
                    
119</tr>
                    
125<td class="colFirst"><code>protected void</code></td>
                    
126<td class="colLast"><span class="strong">SSTRecord.</span><code><strong><a href="../../../../../../../org/apache/poi/hssf/record/SSTRecord.html#serialize(org.apache.poi.hssf.record.cont.ContinuableRecordOutput)">serialize</a></strong>(<a href="../../../../../../../org/apache/poi/hssf/record/cont/ContinuableRecordOutput.html" title="class in org.apache.poi.hssf.record.cont">ContinuableRecordOutput</a>&nbsp;out)</code>&nbsp;</td>
                    
127</tr>
                    
143<td class="colFirst"><code>void</code></td>
                    
144<td class="colLast"><span class="strong">UnicodeString.</span><code><strong><a href="../../../../../../../org/apache/poi/hssf/record/common/UnicodeString.html#serialize(org.apache.poi.hssf.record.cont.ContinuableRecordOutput)">serialize</a></strong>(<a href="../../../../../../../org/apache/poi/hssf/record/cont/ContinuableRecordOutput.html" title="class in org.apache.poi.hssf.record.cont">ContinuableRecordOutput</a>&nbsp;out)</code>
                    
145<div class="block">Serialises out the String.</div>
                    
                
Record.html https://gitlab.com/fabi.gjuzi/Portfolio | HTML | 364 lines
                    
37<li><a href="../../../../../org/apache/poi/hssf/record/RecalcIdRecord.html" title="class in org.apache.poi.hssf.record"><span class="strong">Prev Class</span></a></li>
                    
38<li><a href="../../../../../org/apache/poi/hssf/record/RecordBase.html" title="class in org.apache.poi.hssf.record"><span class="strong">Next Class</span></a></li>
                    
39</ul>
                    
80<div class="subTitle">org.apache.poi.hssf.record</div>
                    
81<h2 title="Class Record" class="title">Class Record</h2>
                    
82</div>
                    
101<dt>Direct Known Subclasses:</dt>
                    
102<dd><a href="../../../../../org/apache/poi/hssf/record/AbstractEscherHolderRecord.html" title="class in org.apache.poi.hssf.record">AbstractEscherHolderRecord</a>, <a href="../../../../../org/apache/poi/hssf/record/cont/ContinuableRecord.html" title="class in org.apache.poi.hssf.record.cont">ContinuableRecord</a>, <a href="../../../../../org/apache/poi/hssf/record/LabelRecord.html" title="class in org.apache.poi.hssf.record">LabelRecord</a>, <a href="../../../../../org/apache/poi/hssf/eventusermodel/dummyrecord/LastCellOfRowDummyRecord.html" title="class in org.apache.poi.hssf.eventusermodel.dummyrecord">LastCellOfRowDummyRecord</a>, <a href="../../../../../org/apache/poi/hssf/eventusermodel/dummyrecord/MissingCellDummyRecord.html" title="class in org.apache.poi.hssf.eventusermodel.dummyrecord">MissingCellDummyRecord</a>, <a href="../../../../../org/apache/poi/hssf/eventusermodel/dummyrecord/MissingRowDummyRecord.html" title="class in org.apache.poi.hssf.eventusermodel.dummyrecord">MissingRowDummyRecord</a>, <a href="../../../../../org/apache/poi/hssf/record/ObjRecord.html" title="class in org.apache.poi.hssf.record">ObjRecord</a>, <a href="../../../../../org/apache/poi/hssf/record/StandardRecord.html" title="class in org.apache.poi.hssf.record">StandardRecord</a></dd>
                    
103</dl>
                    
105<br>
                    
106<pre>public abstract class <span class="strong">Record</span>
                    
107extends <a href="../../../../../org/apache/poi/hssf/record/RecordBase.html" title="class in org.apache.poi.hssf.record">RecordBase</a></pre>
                    
317<ul class="navList">
                    
318<li><a href="../../../../../org/apache/poi/hssf/record/RecalcIdRecord.html" title="class in org.apache.poi.hssf.record"><span class="strong">Prev Class</span></a></li>
                    
319<li><a href="../../../../../org/apache/poi/hssf/record/RecordBase.html" title="class in org.apache.poi.hssf.record"><span class="strong">Next Class</span></a></li>
                    
                
SiteRecoveryTestsBase.cs https://gitlab.com/jslee1/azure-powershell | C# | 277 lines
                    
34{
                    
35    public abstract class SiteRecoveryTestsBase : RMTestBase
                    
36    {
                    
104            {
                    
105                context.Start(TestUtilities.GetCallingClass(2), TestUtilities.GetCurrentMethodName(2));
                    
106
                    
129
                    
130        public T GetServiceClient<T>() where T : class
                    
131        {
                    
187
                    
188        public static T GetRSMServiceClient<T>(TestEnvironmentFactory factory, SiteRecoveryVaultManagementClient client) where T : class
                    
189        {
                    
227
                    
228        public static T GetSRMServiceClient<T>(TestEnvironmentFactory factory, SiteRecoveryManagementClient client) where T : class
                    
229        {
                    
                
map.rb https://gitlab.com/prodigasistemas/gsan-api | Ruby | 337 lines
                    
33  # `Concurrent::Map` instead of `Concurrent::Hash` for your concurrency-safe hash needs.
                    
34  class Map < Collection::MapImplementation
                    
35
                    
161    #     to be use as a concurrency primitive with strong happens-before
                    
162    #     guarantees. It is not intended to be used as a high-level abstraction
                    
163    #     supporting complex operations. All read and write operations are
                    
                
Galaxy.php https://github.com/Basti-sama/Bengine.git | PHP | 322 lines
                    
9
                    
10class Bengine_Game_Controller_Galaxy extends Bengine_Game_Controller_Abstract
                    
11{
                    
234					$sys[$i]["rocketattack"] = Link::get("game/".SID."/RocketAttack/Index/".$sys[$i]["planetid"], $rockimg);
                    
235					$sys[$i]["moonrocket"] = "<tr><td colspan=\"3\" class=\"center\">".Link::get("game/".SID."/RocketAttack/Index/".$sys[$i]["moonid"]."/1", Core::getLanguage()->getItem("ROCKET_ATTACK"))."</td></tr>";
                    
236				}
                    
                
TaskController.java https://github.com/coderplay/hadoop-common.git | Java | 409 lines
                    
40 * up of tasks, as also the launching and killing task JVMs.
                    
41 * Subclasses of this class will implement the logic required for
                    
42 * performing the actual actions.
                    
47 * 
                    
48 * NOTE: This class is internal only class and not intended for users!!
                    
49 */
                    
49 */
                    
50public abstract class TaskController implements Configurable {
                    
51  
                    
195   */
                    
196  static abstract class TaskControllerPathDeletionContext 
                    
197  extends PathDeletionContext {
                    
327  /**
                    
328   * NOTE: This class is internal only class and not intended for users!!
                    
329   * 
                    
                
abstractdialog.js https://github.com/resistorsoftware/box2d.git | JavaScript | 421 lines
                    
193 *     the button is clicked. It is recommended that this function be a method
                    
194 *     in the concrete subclass of AbstractDialog using this Builder, and that
                    
195 *     it dispatch an event (see {@link handleOk}).
                    
216    function(className) {
                    
217  goog.dom.classes.add(this.wrappedDialog_.getDialogElement(), className);
                    
218  return this;
                    
345 * event to listeners, or returns null to prevent the dialog from closing.
                    
346 * Subclasses should override this to return their own subclass of
                    
347 * goog.events.Event that includes all data a plugin would need from the dialog.
                    
353 */
                    
354goog.ui.editor.AbstractDialog.prototype.createOkEvent = goog.abstractMethod;
                    
355
                    
399
                    
400  goog.ui.editor.AbstractDialog.superClass_.disposeInternal.call(this);
                    
401};
                    
                
SearchForm.java https://gitlab.com/hewittlab/dark | Java | 306 lines
                    
59import au.org.theark.core.web.component.ArkDatePicker;
                    
60import au.org.theark.core.web.form.AbstractSearchForm;
                    
61import au.org.theark.study.service.IStudyService;
                    
67 */
                    
68public class SearchForm extends AbstractSearchForm<SubjectVO> {
                    
69	private static final long						serialVersionUID	= 1L;
                    
69	private static final long						serialVersionUID	= 1L;
                    
70	protected static final Logger				log					= LoggerFactory.getLogger(SearchForm.class);
                    
71
                    
                
Client.php https://github.com/Riges/KawaiViewModel.git | PHP | 334 lines
                    
39 */
                    
40class Zend_Oauth_Client extends Zend_Http_Client
                    
41{
                    
50     * of Zend_Oauth_Config; it's not a Zend_Config instance since that level
                    
51     * of abstraction is unnecessary and doesn't let me escape the accessors
                    
52     * and mutators anyway!
                    
67     * Constructor; creates a new HTTP Client instance which itself is
                    
68     * just a typical Zend_Http_Client subclass with some OAuth icing to
                    
69     * assist in automating OAuth parameter generation, addition and
                    
                
session_store.rb https://bitbucket.org/ohimmelreich/asalia-training.git | Ruby | 360 lines
                    
5  #
                    
6  # A session store backed by an Active Record class. A default class is
                    
7  # provided, but any object duck-typing to an Active Record Session class
                    
39  #
                    
40  #   ActiveRecord::SessionStore.session_class = MySessionClass
                    
41  #
                    
52  # use it as a basis for high-performance database-specific stores.
                    
53  class SessionStore < ActionDispatch::Session::AbstractStore
                    
54    module ClassMethods # :nodoc:
                    
157          return false unless loaded?
                    
158          limit = self.class.data_column_size_limit
                    
159          if limit and read_attribute(@@data_column_name).size > limit
                    
166    # store but bypasses Active Record and issues SQL directly. This is
                    
167    # an example session model class meant as a basis for your own classes.
                    
168    #
                    
                
alloc.h https://github.com/ab3416/linux-2.6.git | C Header | 324 lines
                    
35/*
                    
36 * ocfs2_extent_tree and ocfs2_extent_tree_operations are used to abstract
                    
37 * the b-tree operations in ocfs2. Now all the b-tree operations are not
                    
41 *
                    
42 * ocfs2_extent_tree becomes the first-class object for extent tree
                    
43 * manipulation.  Callers of the alloc.c code need to fill it via one of
                    
51 * root_journal_access function.
                    
52 * ocfs2_extent_tree_operations abstract the normal operations we do for
                    
53 * the root of extent b-tree.
                    
                
time_zone_test.rb https://github.com/ghar/rails.git | Ruby | 309 lines
                    
1require 'abstract_unit'
                    
2require 'active_support/time'
                    
3
                    
4class TimeZoneTest < Test::Unit::TestCase
                    
5  def test_utc_to_local
                    
79    zone = ActiveSupport::TimeZone['America/Montevideo']
                    
80    assert_equal ActiveSupport::TimeZone, zone.class
                    
81    assert_equal zone.object_id, ActiveSupport::TimeZone['America/Montevideo'].object_id
                    
                
ContainerLauncherImpl.java https://github.com/rbodkin/hadoop-common.git | Java | 293 lines
                    
63import org.apache.hadoop.yarn.security.ContainerTokenIdentifier;
                    
64import org.apache.hadoop.yarn.service.AbstractService;
                    
65
                    
66/**
                    
67 * This class is responsible for launching of containers.
                    
68 */
                    
68 */
                    
69public class ContainerLauncherImpl extends AbstractService implements
                    
70    ContainerLauncher {
                    
71
                    
72  private static final Log LOG = LogFactory.getLog(ContainerLauncherImpl.class);
                    
73
                    
96        YarnConfiguration.YARN_SECURITY_INFO,
                    
97        ContainerManagerSecurityInfo.class, SecurityInfo.class);
                    
98    this.recordFactory = RecordFactoryProvider.getRecordFactory(conf);
                    
                
BasicCollectionPersister.cs https://github.com/ngbrown/nhibernate-core.git | C# | 356 lines
                    
22	/// </summary>
                    
23	public partial class BasicCollectionPersister : AbstractCollectionPersister
                    
24	{
                    
317
                    
318		public override SqlString FromJoinFragment(string alias, bool innerJoin, bool includeSubclasses)
                    
319		{
                    
322
                    
323		public override SqlString WhereJoinFragment(string alias, bool innerJoin, bool includeSubclasses)
                    
324		{
                    
                
csecembeddedperms.html https://gitlab.com/bandinipavel/Oauth | HTML | 293 lines
                    
63
                    
64<div class="section"><h2 class="sectiontitle">Mandatory permissions</h2><dl>
                    
65<dt class="dlterm">permission java.lang.RuntimePermission "createClassLoader"</dt>
                    
81
                    
82<div class="section"><h2 class="sectiontitle">Optional permissions</h2><dl>
                    
83<dt class="dlterm">permission java.util.PropertyPermission "user.dir", "read"</dt>
                    
225
                    
226<dt class="dlterm">permission java.lang.RuntimePermission "getClassLoader"</dt>
                    
227
                    
228<dd> This permission is also needed when setting the context class loader to
                    
229avoid class loader leaks. The class loader for the parent is saved and set to
                    
230null before creation of the thread and restored afterwards.</dd>
                    
257
                    
258<div class="section"><h2 class="sectiontitle">Combining permissions</h2>
                    
259<div class="p">The <a href="rsecpolicysample.html#rsecpolicysample">Sample customized Java security policy file</a>
                    
                
sandbox.py https://gitlab.com/Alioth-Project/clang-r445002 | Python | 492 lines
                    
30__all__ = [
                    
31    "AbstractSandbox", "DirectorySandbox", "SandboxViolation", "run_setup",
                    
32]
                    
94
                    
95class UnpickleableException(Exception):
                    
96    """
                    
113
                    
114class ExceptionSaver:
                    
115    """
                    
256
                    
257class AbstractSandbox:
                    
258    """Wrap 'os' module and 'open()' builtin for virtualizing setup scripts"""
                    
381
                    
382class DirectorySandbox(AbstractSandbox):
                    
383    """Restrict operations to a single subdirectory - pseudo-chroot"""
                    
                
Json.php https://github.com/testruby/Tine-2.0-Open-Source-Groupware-and-CRM.git | PHP | 303 lines
                    
13 *
                    
14 * This class handles all Json requests for the Timetracker application
                    
15 *
                    
18 */
                    
19class Timetracker_Frontend_Json extends Tinebase_Frontend_Json_Abstract
                    
20{    
                    
55    {
                    
56        switch (get_class($_record)) {
                    
57            case 'Timetracker_Model_Timesheet':
                    
107        
                    
108        switch ($_records->getRecordClassName()) {
                    
109            case 'Timetracker_Model_Timesheet':
                    
                
AbstractAnnotationAwareTransactionalTests.java https://github.com/loicfrering/spring-framework.git | Java | 311 lines
                    
70 * @deprecated as of Spring 3.0, in favor of using the listener-based test context framework
                    
71 * ({@link org.springframework.test.context.junit38.AbstractJUnit38SpringContextTests})
                    
72 */
                    
72 */
                    
73public abstract class AbstractAnnotationAwareTransactionalTests extends
                    
74		AbstractTransactionalDataSourceSpringContextTests {
                    
130		ProfileValueSource uniqueProfileValueSource = null;
                    
131		Map<?, ?> beans = applicationContext.getBeansOfType(ProfileValueSource.class);
                    
132		if (beans.size() == 1) {
                    
213			// has to be public so we can retrieve it.
                    
214			testMethod = getClass().getMethod(getName(), (Class[]) null);
                    
215		}
                    
276
                    
277		Repeat repeat = testMethod.getAnnotation(Repeat.class);
                    
278		int runs = ((repeat != null) && (repeat.value() > 1)) ? repeat.value() : 1;
                    
                
dynamodb-session-handler.rst https://gitlab.com/github-cloud-corp/aws-sdk-php | ReStructuredText | 242 lines
                    
55normally do with PHP's default session handler. The DynamoDB Session Handler
                    
56encapsulates and abstracts the interactions with Amazon DynamoDB and enables
                    
57you to simply use PHP's native session functions and interface.
                    
96    Configuration used to batch deletes during garbage collection. These options are passed directly into `DynamoDB
                    
97    WriteRequestBatch <http://docs.aws.amazon.com/aws-sdk-php/v3/api/class-Aws.DynamoDb.WriteRequestBatch.html>`_ objects.
                    
98    You must manually trigger garbage collection via ``SessionHandler::garbageCollect()``.
                    
                
NSImageIconCache.java https://gitlab.com/vincent.hsu/cyberduck | Java | 316 lines
                    
38
                    
39public class NSImageIconCache extends AbstractIconCache<NSImage> {
                    
40    private static final Logger log = Logger.getLogger(NSImageIconCache.class);
                    
                
docview.h https://bitbucket.org/lennonchan/cafu.git | C Header | 332 lines
                    
116See the example application in @c samples/docview.
                    
117To use the abstract wxDocument class, you need to derive a new class and override
                    
118at least the member functions SaveObject and LoadObject. SaveObject and
                    
121
                    
122Use the macros DECLARE_DYNAMIC_CLASS and IMPLEMENT_DYNAMIC_CLASS in order
                    
123to allow the framework to create document objects on demand. When you create
                    
144
                    
145To use the abstract wxView class, you need to derive a new class and override
                    
146at least the member functions OnCreate, OnDraw, OnUpdate and OnClose. You will probably
                    
195Just pass relevant information to the constructor including CLASSINFO(YourDocumentClass)
                    
196and CLASSINFO(YourViewClass) to allow dynamic instance creation.
                    
197
                    
215through this object, such as providing selection and file dialogs.
                    
216The application can use this class 'as is' or derive a class and override some members
                    
217to extend or change the functionality.
                    
                
BookingServiceTest.java https://gitlab.com/sebastian.toepfer/cargotracker-ddd | Java | 285 lines
                    
101				.addClass(TrackingId.class)
                    
102				.addClass(UnLocode.class)
                    
103				.addClass(Itinerary.class)
                    
103				.addClass(Itinerary.class)
                    
104				.addClass(Leg.class)
                    
105				.addClass(Voyage.class)
                    
105				.addClass(Voyage.class)
                    
106				.addClass(VoyageNumber.class)
                    
107				.addClass(Schedule.class)
                    
112				.addClass(RouteSpecification.class)
                    
113				.addClass(AbstractSpecification.class)
                    
114				.addClass(Specification.class)
                    
127				.addClass(HandlingEventRepository.class)
                    
128				.addClass(HandlingEventFactory.class)
                    
129				.addClass(CannotCreateHandlingEventException.class)
                    
                
AnalysisRequestHandlerBase.java https://github.com/adsabs/solr-affiliation-disambiguation.git | Java | 330 lines
                    
40/**
                    
41 * A base class for all analysis request handlers.
                    
42 *
                    
45 */
                    
46public abstract class AnalysisRequestHandlerBase extends RequestHandlerBase {
                    
47
                    
60   */
                    
61  protected abstract NamedList doAnalysis(SolrQueryRequest req) throws Exception;
                    
62
                    
74
                    
75    if (!TokenizerChain.class.isInstance(analyzer)) {
                    
76
                    
84      NamedList<List<NamedList>> namedList = new NamedList<List<NamedList>>();
                    
85      namedList.add(tokenStream.getClass().getName(), convertTokensToNamedLists(analyzeTokenStream(tokenStream), context));
                    
86      return namedList;
                    
                
StandardVMPage.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 397 lines
                    
22import org.eclipse.debug.ui.StringVariableSelectionDialog;
                    
23import org.eclipse.jdt.debug.ui.launchConfigurations.AbstractVMInstallPage;
                    
24import org.eclipse.jdt.internal.debug.ui.IJavaDebugHelpContextIds;
                    
26import org.eclipse.jdt.internal.debug.ui.StatusInfo;
                    
27import org.eclipse.jdt.launching.AbstractVMInstallType;
                    
28import org.eclipse.jdt.launching.IVMInstallType;
                    
53 */
                    
54public class StandardVMPage extends AbstractVMInstallPage {
                    
55	
                    
244			if (type instanceof AbstractVMInstallType) {
                    
245				AbstractVMInstallType atype = (AbstractVMInstallType)type;
                    
246				fJavadocLocation = atype.getDefaultJavadocLocation(getInstallLocation());
                    
273	/* (non-Javadoc)
                    
274	 * @see org.eclipse.jdt.debug.ui.launchConfigurations.AbstractVMInstallPage#finish()
                    
275	 */
                    
                
BoundedFifoBuffer.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 388 lines
                    
22import java.io.Serializable;
                    
23import java.util.AbstractCollection;
                    
24import java.util.Arrays;
                    
53 * <p>
                    
54 * This class is Serializable from Commons Collections 3.1.
                    
55 *
                    
64 */
                    
65public class BoundedFifoBuffer extends AbstractCollection
                    
66        implements Buffer, BoundedCollection, Serializable {
                    
147     * @throws IOException
                    
148     * @throws ClassNotFoundException
                    
149     */
                    
149     */
                    
150    private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
                    
151        in.defaultReadObject();
                    
                
AsyncVirtualContentTableViewer.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 483 lines
                    
39
                    
40abstract public class AsyncVirtualContentTableViewer extends AsynchronousTableViewer {
                    
41
                    
383	
                    
384	abstract protected AbstractVirtualContentTableModel createVirtualContentTableModel();
                    
385	
                    
403	
                    
404	public AbstractVirtualContentTableModel getVirtualContentModel()
                    
405	{
                    
405	{
                    
406		if (getModel() instanceof AbstractVirtualContentTableModel)
                    
407			return (AbstractVirtualContentTableModel) getModel();
                    
                
DownloadEventNotifierImpl.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 338 lines
                    
49 */
                    
50public class DownloadEventNotifierImpl implements DownloadEventNotifier {
                    
51	
                    
158
                    
159	private abstract class BaseDownloadListener implements DownloadManagerListener {
                    
160		protected ArrayList listeners = new ArrayList();
                    
163		private BaseDownloadListener() {
                    
164			this_mon = new AEMonitor(getClass().getName());
                    
165		}
                    
202	
                    
203	public class DownloadActivationNotifier extends BaseDownloadListener implements DownloadActivationListener {
                    
204		public void downloadAdded(Download download) {download.addActivationListener(this);}
                    
215
                    
216	public class DownloadCompletionNotifier extends BaseDownloadListener implements DownloadCompletionListener {
                    
217		public void downloadAdded(Download download) {download.addCompletionListener(this);}
                    
                
Local.php https://gitlab.com/Pasantias/pasantiasASLG | PHP | 506 lines
                    
17
                    
18class Local extends AbstractAdapter
                    
19{
                    
                
util_test.rb https://gitlab.com/tt2016/horse_analysis | Ruby | 382 lines
                    
5
                    
6class UtilTest < Test::Unit::TestCase
                    
7  include Sass::Util
                    
302
                    
303  class FooBar
                    
304    def foo
                    
304    def foo
                    
305      Sass::Util.abstract(self)
                    
306    end
                    
308
                    
309  def test_abstract
                    
310    assert_raise_message(NotImplementedError,
                    
366
                    
367  class FakeError < RuntimeError; end
                    
368
                    
                
OgreParticleSystem_8h.html https://github.com/ninty9notout/Group-Work.git | HTML | 91 lines
                    
47<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1ParticleSystem_1_1CmdQuota.html">Ogre::ParticleSystem::CmdQuota</a></td></tr>
                    
48<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Command object for quota (see <a class="el" href="classOgre_1_1ParamCommand.html" title="Abstract class which is command object which gets/sets parameters.">ParamCommand</a>).  <a href="classOgre_1_1ParticleSystem_1_1CmdQuota.html#_details">More...</a><br/></td></tr>
                    
49<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1ParticleSystem_1_1CmdEmittedEmitterQuota.html">Ogre::ParticleSystem::CmdEmittedEmitterQuota</a></td></tr>
                    
59<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1ParticleSystem_1_1CmdRenderer.html">Ogre::ParticleSystem::CmdRenderer</a></td></tr>
                    
60<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Command object for renderer (see <a class="el" href="classOgre_1_1ParamCommand.html" title="Abstract class which is command object which gets/sets parameters.">ParamCommand</a>).  <a href="classOgre_1_1ParticleSystem_1_1CmdRenderer.html#_details">More...</a><br/></td></tr>
                    
61<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1ParticleSystem_1_1CmdSorted.html">Ogre::ParticleSystem::CmdSorted</a></td></tr>
                    
61<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1ParticleSystem_1_1CmdSorted.html">Ogre::ParticleSystem::CmdSorted</a></td></tr>
                    
62<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Command object for sorting (see <a class="el" href="classOgre_1_1ParamCommand.html" title="Abstract class which is command object which gets/sets parameters.">ParamCommand</a>).  <a href="classOgre_1_1ParticleSystem_1_1CmdSorted.html#_details">More...</a><br/></td></tr>
                    
63<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1ParticleSystem_1_1CmdLocalSpace.html">Ogre::ParticleSystem::CmdLocalSpace</a></td></tr>
                    
63<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1ParticleSystem_1_1CmdLocalSpace.html">Ogre::ParticleSystem::CmdLocalSpace</a></td></tr>
                    
64<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Command object for local space (see <a class="el" href="classOgre_1_1ParamCommand.html" title="Abstract class which is command object which gets/sets parameters.">ParamCommand</a>).  <a href="classOgre_1_1ParticleSystem_1_1CmdLocalSpace.html#_details">More...</a><br/></td></tr>
                    
65<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1ParticleSystem_1_1CmdIterationInterval.html">Ogre::ParticleSystem::CmdIterationInterval</a></td></tr>
                    
67<tr><td class="memItemLeft" align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1ParticleSystem_1_1CmdNonvisibleTimeout.html">Ogre::ParticleSystem::CmdNonvisibleTimeout</a></td></tr>
                    
68<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Command object for nonvisible timeout (see <a class="el" href="classOgre_1_1ParamCommand.html" title="Abstract class which is command object which gets/sets parameters.">ParamCommand</a>).  <a href="classOgre_1_1ParticleSystem_1_1CmdNonvisibleTimeout.html#_details">More...</a><br/></td></tr>
                    
69<tr><td class="memItemLeft" align="right" valign="top">struct &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="structOgre_1_1ParticleSystem_1_1SortByDirectionFunctor.html">Ogre::ParticleSystem::SortByDirectionFunctor</a></td></tr>
                    
                
qabstractitemview.h https://gitlab.com/x33n/phantomjs | C Header | 379 lines
                    
57class QEvent;
                    
58class QAbstractItemViewPrivate;
                    
59
                    
59
                    
60class Q_WIDGETS_EXPORT QAbstractItemView : public QAbstractScrollArea
                    
61{
                    
122
                    
123    explicit QAbstractItemView(QWidget *parent = 0);
                    
124    ~QAbstractItemView();
                    
137
                    
138    void setSelectionBehavior(QAbstractItemView::SelectionBehavior behavior);
                    
139    QAbstractItemView::SelectionBehavior selectionBehavior() const;
                    
266protected:
                    
267    QAbstractItemView(QAbstractItemViewPrivate &, QWidget *parent = 0);
                    
268
                    
                
spatial_hashing.h https://github.com/lessandro/nbis.git | C Header | 430 lines
                    
104		
                    
105	// Class to abstract a HashIterator (that stores also the key, 
                    
106	// while the interface of the generic spatial indexing need only simple object (face) pointers.
                    
343
                    
344		template <class OBJPOINTDISTFUNCTOR, class OBJMARKER>
                    
345			ObjPtr  GetClosest(OBJPOINTDISTFUNCTOR & _getPointDistance, OBJMARKER & _marker,
                    
351
                    
352		template <class OBJPOINTDISTFUNCTOR, class OBJMARKER, class OBJPTRCONTAINER,class DISTCONTAINER, class POINTCONTAINER>
                    
353			unsigned int GetKClosest(OBJPOINTDISTFUNCTOR & _getPointDistance,OBJMARKER & _marker,
                    
361
                    
362		template <class OBJPOINTDISTFUNCTOR, class OBJMARKER, class OBJPTRCONTAINER, class DISTCONTAINER, class POINTCONTAINER>
                    
363		unsigned int GetInSphere(OBJPOINTDISTFUNCTOR & _getPointDistance,
                    
375
                    
376		template <class OBJMARKER, class OBJPTRCONTAINER>
                    
377			unsigned int GetInBox(OBJMARKER & _marker,
                    
                
ASTProvider.java https://gitlab.com/unofficial-mirrors/eclipse-che | Java | 288 lines
                    
23import org.eclipse.jdt.core.dom.CheASTParser;
                    
24import org.eclipse.jdt.core.dom.AbstractTypeDeclaration;
                    
25import org.eclipse.jdt.core.dom.CompilationUnit;
                    
34 */
                    
35public class ASTProvider {
                    
36    public static final  int     SHARED_AST_LEVEL              = AST.JLS8;
                    
38    public static final  boolean SHARED_BINDING_RECOVERY       = true;
                    
39    private static final Logger  LOG                           = LoggerFactory.getLogger(ASTProvider.class);
                    
40    private static final String  DEBUG_PREFIX                  = "ASTProvider > "; //$NON-NLS-1$
                    
43    /**
                    
44     * Tells whether this class is in debug mode.
                    
45     * @since 3.0
                    
91
                    
92        List<AbstractTypeDeclaration> types= ast.types();
                    
93        if (types != null && types.size() > 0)
                    
                
package-tree.html https://github.com/Ordojan/Web-Server.git | HTML | 166 lines
                    
38  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
                    
39  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
                    
40  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
                    
96</UL>
                    
97<LI TYPE="circle">org.apache.http.impl.nio.codecs.<A HREF="../../../../../../org/apache/http/impl/nio/codecs/AbstractContentEncoder.html" title="class in org.apache.http.impl.nio.codecs"><B>AbstractContentEncoder</B></A> (implements org.apache.http.nio.<A HREF="../../../../../../org/apache/http/nio/ContentEncoder.html" title="interface in org.apache.http.nio">ContentEncoder</A>)
                    
98<UL>
                    
103<UL>
                    
104<LI TYPE="circle">org.apache.http.impl.nio.codecs.<A HREF="../../../../../../org/apache/http/impl/nio/codecs/DefaultHttpRequestParser.html" title="class in org.apache.http.impl.nio.codecs"><B>DefaultHttpRequestParser</B></A><LI TYPE="circle">org.apache.http.impl.nio.codecs.<A HREF="../../../../../../org/apache/http/impl/nio/codecs/DefaultHttpResponseParser.html" title="class in org.apache.http.impl.nio.codecs"><B>DefaultHttpResponseParser</B></A><LI TYPE="circle">org.apache.http.impl.nio.codecs.<A HREF="../../../../../../org/apache/http/impl/nio/codecs/HttpRequestParser.html" title="class in org.apache.http.impl.nio.codecs"><B>HttpRequestParser</B></A><LI TYPE="circle">org.apache.http.impl.nio.codecs.<A HREF="../../../../../../org/apache/http/impl/nio/codecs/HttpResponseParser.html" title="class in org.apache.http.impl.nio.codecs"><B>HttpResponseParser</B></A></UL>
                    
105<LI TYPE="circle">org.apache.http.impl.nio.codecs.<A HREF="../../../../../../org/apache/http/impl/nio/codecs/AbstractMessageWriter.html" title="class in org.apache.http.impl.nio.codecs"><B>AbstractMessageWriter</B></A>&lt;T&gt; (implements org.apache.http.nio.<A HREF="../../../../../../org/apache/http/nio/NHttpMessageWriter.html" title="interface in org.apache.http.nio">NHttpMessageWriter</A>&lt;T&gt;)
                    
106<UL>
                    
107<LI TYPE="circle">org.apache.http.impl.nio.codecs.<A HREF="../../../../../../org/apache/http/impl/nio/codecs/DefaultHttpRequestWriter.html" title="class in org.apache.http.impl.nio.codecs"><B>DefaultHttpRequestWriter</B></A><LI TYPE="circle">org.apache.http.impl.nio.codecs.<A HREF="../../../../../../org/apache/http/impl/nio/codecs/DefaultHttpResponseWriter.html" title="class in org.apache.http.impl.nio.codecs"><B>DefaultHttpResponseWriter</B></A><LI TYPE="circle">org.apache.http.impl.nio.codecs.<A HREF="../../../../../../org/apache/http/impl/nio/codecs/HttpRequestWriter.html" title="class in org.apache.http.impl.nio.codecs"><B>HttpRequestWriter</B></A><LI TYPE="circle">org.apache.http.impl.nio.codecs.<A HREF="../../../../../../org/apache/http/impl/nio/codecs/HttpResponseWriter.html" title="class in org.apache.http.impl.nio.codecs"><B>HttpResponseWriter</B></A></UL>
                    
108</UL>
                    
123  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
                    
124  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
                    
125  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
                    
                
Method.java https://gitlab.com/kashell/Kawa | Java | 369 lines
                    
26    Method next;
                    
27    ClassType classfile;
                    
28    CodeAttr code;
                    
72
                    
73    /** A copy constructor, except you can override the declaring class.
                    
74     * This can be used to improve binary compatibility by emitting method
                    
205
                    
206    void write (DataOutputStream dstr, ClassType classfile)
                    
207            throws java.io.IOException {
                    
302
                    
303    public ClassType getDeclaringClass() { return classfile; }
                    
304
                    
351        StringBuffer sbuf = new StringBuffer(100);
                    
352        ClassType declaring = getDeclaringClass();
                    
353        sbuf.append(declaring != null ? declaring.getName() : "???");
                    
                
Developer_org.rst https://gitlab.com/exaalt/lammps | ReStructuredText | 259 lines
                    
90
                    
91The :cpp:class:`LAMMPS_NS::LAMMPS` class is the topmost class and
                    
92represents what is generally referred to an "instance" of LAMMPS.  It is
                    
163
                    
164More details on individual classes in the :ref:`class-topology` are as
                    
165follows:
                    
177
                    
178- Command style classes are derived from the Command class. They provide
                    
179  input script commands that perform one-time operations
                    
233  class is for computing long-range Coulombic interactions.  One of its
                    
234  child classes, PPPM, uses the FFT3D and Remap classes to redistribute
                    
235  and communicate grid-based information across the parallel processors.
                    
248  :doc:`WriteRestart <write_restart>` classes respectively.  The Dump
                    
249  class is a base class with several derived classes implementing
                    
250  various dump style variants.
                    
                
DAnalysisXmlLoader.java https://gitlab.com/cdc-java/cdc-deps | Java | 389 lines
                    
18import cdc.io.data.NodeType;
                    
19import cdc.io.data.util.AbstractResourceLoader;
                    
20import cdc.util.lang.FailureReaction;
                    
21
                    
22public final class DAnalysisXmlLoader extends AbstractResourceLoader<DAnalysis> {
                    
23    private final DAnalysis analysis;
                    
364                                   Element element) {
                    
365        final DElementScope scope = element.getAttributeAsEnum(DAnalysisXml.SCOPE, DElementScope.class, DElementScope.UNKNOWN);
                    
366        if (delement instanceof DItem) {
                    
                
DatabaseContext.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 322 lines
                    
88     */
                    
89    private JDOClassDescriptorResolver _classDescriptorResolver = null;
                    
90    
                    
153            if (_classDescriptorResolver == null) {
                    
154                _classDescriptorResolver = new JDOClassDescriptorResolverImpl(); 
                    
155            }
                    
190            while (classMappings.hasMoreElements()) {
                    
191                org.castor.jdo.conf.ClassMapping classConf = classMappings.nextElement();
                    
192                String className = classConf.getName();
                    
192                String className = classConf.getName();
                    
193                _classDescriptorResolver.addClass(Class.forName(className));
                    
194            }
                    
318    public void setClassDescriptorResolver(
                    
319            final JDOClassDescriptorResolver classDescriptorResolver) {
                    
320        _classDescriptorResolver = classDescriptorResolver;
                    
                
RecordingsTableModel.html https://github.com/DDMAL/jMIR.git | HTML | 331 lines
                    
43  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
                    
44  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/RecordingsTableModel.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
                    
45  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
                    
45  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
                    
46  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
                    
47  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
                    
282  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
                    
283  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
                    
284  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/RecordingsTableModel.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
                    
287  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
                    
288  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
                    
289  </TR>
                    
298<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
                    
299&nbsp;<A HREF="../../jsymbolic/gui/RecordingSelectorPanel.html" title="class in jsymbolic.gui"><B>PREV CLASS</B></A>&nbsp;
                    
300&nbsp;NEXT CLASS</FONT></TD>
                    
                
Ftp.php https://gitlab.com/Sigpot/AirSpot | PHP | 505 lines
                    
12
                    
13class Ftp extends AbstractFtpAdapter
                    
14{
                    
                
NativeFontDirFinder.html https://bitbucket.org/haris_peco/debrief.git | HTML | 296 lines
                    
36  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
                    
37  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
                    
38  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/NativeFontDirFinder.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
                    
65<NOSCRIPT>
                    
66  <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
                    
67</NOSCRIPT>
                    
95<DL>
                    
96<DT><B>Direct Known Subclasses:</B> <DD><A HREF="../../../../../org/apache/fop/fonts/autodetect/MacFontDirFinder.html" title="class in org.apache.fop.fonts.autodetect">MacFontDirFinder</A>, <A HREF="../../../../../org/apache/fop/fonts/autodetect/UnixFontDirFinder.html" title="class in org.apache.fop.fonts.autodetect">UnixFontDirFinder</A></DD>
                    
97</DL>
                    
99<DL>
                    
100<DT>public abstract class <B>NativeFontDirFinder</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../../org/apache/fop/fonts/autodetect/FontFinder.html" title="interface in org.apache.fop.fonts.autodetect">FontFinder</A></DL>
                    
101
                    
249  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
                    
250  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/NativeFontDirFinder.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
                    
251  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
                    
                
ClassDeclarationSniff.php https://github.com/KaRLsM/SIFO.git | PHP | 281 lines
                    
16
                    
17if (class_exists('PEAR_Sniffs_Classes_ClassDeclarationSniff', true) === false) {
                    
18    $error = 'Class PEAR_Sniffs_Classes_ClassDeclarationSniff not found';
                    
35 */
                    
36class Squiz_Sniffs_Classes_ClassDeclarationSniff extends PEAR_Sniffs_Classes_ClassDeclarationSniff
                    
37{
                    
74
                    
75        $nextClass = $phpcsFile->findNext(array(T_CLASS, T_INTERFACE), ($stackPtr + 1));
                    
76
                    
76
                    
77        if ($nextClass !== false) {
                    
78            // We have another, so an error is thrown.
                    
79            $error = 'Only one interface or class is allowed in a file';
                    
80            $phpcsFile->addError($error, $nextClass, 'MultipleClasses');
                    
81        }
                    
                
package-use.html https://github.com/Michmis/OpenSettlers.git | HTML | 327 lines
                    
41  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
                    
42  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
                    
43  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
                    
193<TR BGCOLOR="white" CLASS="TableRowColor">
                    
194<TD><B><A HREF="../../../../soc/common/client/visuals/class-use/AbstractPieceVisual.html#soc.common.client.visuals.board"><B>AbstractPieceVisual</B></A></B>
                    
195
                    
214<TR BGCOLOR="white" CLASS="TableRowColor">
                    
215<TD><B><A HREF="../../../../soc/common/client/visuals/class-use/AbstractPieceVisual.html#soc.common.client.visuals.game"><B>AbstractPieceVisual</B></A></B>
                    
216
                    
235<TR BGCOLOR="white" CLASS="TableRowColor">
                    
236<TD><B><A HREF="../../../../soc/common/client/visuals/class-use/AbstractPieceVisual.html#soc.gwtClient.game.widgets"><B>AbstractPieceVisual</B></A></B>
                    
237
                    
256<TR BGCOLOR="white" CLASS="TableRowColor">
                    
257<TD><B><A HREF="../../../../soc/common/client/visuals/class-use/AbstractPieceVisual.html#soc.gwtClient.visuals.svg"><B>AbstractPieceVisual</B></A></B>
                    
258
                    
                
PropertiesFileSourceViewerConfiguration.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 398 lines
                    
58import org.eclipse.jdt.internal.ui.JavaPlugin;
                    
59import org.eclipse.jdt.internal.ui.text.AbstractJavaScanner;
                    
60import org.eclipse.jdt.internal.ui.text.HTMLAnnotationHover;
                    
68 * <p>
                    
69 * This class may be instantiated; it is not intended to be subclassed.
                    
70 * </p>
                    
73 */
                    
74public class PropertiesFileSourceViewerConfiguration extends TextSourceViewerConfiguration {
                    
75
                    
89	 */
                    
90	private AbstractJavaScanner fPropertyKeyScanner;
                    
91	/**
                    
93	 */
                    
94	private AbstractJavaScanner fCommentScanner;
                    
95	/**
                    
                
Norm2AllModes.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 367 lines
                    
16public final class Norm2AllModes {
                    
17    // Public API dispatch via Normalizer2 subclasses -------------------------- ***
                    
18
                    
19    // Normalizer2 implementation for the old UNORM_NONE.
                    
20    public static final class NoopNormalizer2 extends Normalizer2 {
                    
21        @Override
                    
71
                    
72    // Intermediate class:
                    
73    // Has Normalizer2Impl and does boilerplate argument checking and setup.
                    
73    // Has Normalizer2Impl and does boilerplate argument checking and setup.
                    
74    public static abstract class Normalizer2WithImpl extends Normalizer2 {
                    
75        public Normalizer2WithImpl(Normalizer2Impl ni) {
                    
120        }
                    
121        protected abstract void normalizeAndAppend(
                    
122                CharSequence src, boolean doNormalize, Normalizer2Impl.ReorderingBuffer buffer);
                    
                
ServerEngine.java https://github.com/dozeo/bigbluebutton.git | Java | 334 lines
                    
43
                    
44/** Class ServerEngine implement a stateless abstract SIP Server.
                    
45  * The ServerEngine can act as SIP Proxy Server, SIP Registrar Server or both.
                    
46  * <p> For each incoming message, the ServerEngine fires one of the following
                    
47  * abstract methods:
                    
48  * <ul>
                    
48  * <ul>
                    
49  * <li>public abstract processRequestToRemoteUA(Message),</li>
                    
50  * <li>public abstract processRequestToLocalServer(Message),</li>
                    
50  * <li>public abstract processRequestToLocalServer(Message),</li>
                    
51  * <li>public abstract processRequestToLocalServer(Message),</li>
                    
52  * <li>public abstract processResponse(Message).</li>
                    
55  */
                    
56public abstract class ServerEngine implements SipProviderListener
                    
57{
                    
                
 

Source

Language