text
stringlengths
4
1.04M
package kabam.rotmg.game.commands { import kabam.rotmg.game.model.PotionInventoryModel; public class ParsePotionDataCommand { [Inject] public var data:XML; [Inject] public var potionInventoryModel:PotionInventoryModel; public function execute():void { this.potionInventoryModel.initializ...
/* * Temple Library for ActionScript 3.0 * Copyright © MediaMonks B.V. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright ...
package flash.display3D { /** * @externs */ final public class Context3DBufferUsage { public static const DYNAMIC_DRAW:String = "dynamicDraw"; public static const STATIC_DRAW:String = "staticDraw"; } }
package com.playata.application.ui.dialogs { import com.playata.application.data.GameUtil; import com.playata.application.data.battle.BattleSkill; import com.playata.application.data.constants.CConstant; import com.playata.application.data.item.Item; import com.playata.application.data.user.User; impo...
package skein.binding { import skein.binding.core.MethodDestination; public function setter(site:Object, method:String):MethodDestination { return new MethodDestination(site, method); } }
/** Licensed under the Apache License, Version 2.0 @copy (c) See LICENSE.txt */ package examples.helloflash.view.context { import flash.text.TextField; import org.bixbite.display.Context; /** * @langversion 3.0 */ public class HelloFlashOutput extends Context { private var tf:TextField; public func...
package layout.nestedboxes { import org.as3commons.ui.layout.VGroup; import org.as3commons.ui.layout.shortcut.hlayout; import org.as3commons.ui.layout.shortcut.vgroup; import flash.display.Sprite; import flash.text.TextField; import flash.text.TextFieldAutoSize; import flash.text.TextFormat; public class Box e...
// ================================================================================================= // // Starling Framework // Copyright Gamua GmbH. All Rights Reserved. // // This program is free software. You can redistribute and/or modify it // in accordance with the terms of the accompanying license agreement. //...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
package com.epologee.navigator.behaviors { /** * @author Eric-Paul Lecluse (c) epologee.com * * Marker interface for all possible navigation responders, to be used by the Navigator. */ public interface INavigationResponder { } }
package serverProto.activity { import com.netease.protobuf.Message; import com.netease.protobuf.fieldDescriptors.FieldDescriptor$TYPE_UINT32; import com.netease.protobuf.WireType; import com.netease.protobuf.WritingBuffer; import com.netease.protobuf.WriteUtils; import flash.utils.IDataInput; impor...
/* Adobe Systems Incorporated(r) Source Code License Agreement Copyright(c) 2005 Adobe Systems Incorporated. All rights reserved. Please read this Source Code License Agreement carefully before using the source code. Adobe Systems Incorporated grants to you a perpetual, worldwide, non-exclusive, no-charge, ...
package aerys.minko.render.material.phong { import aerys.minko.render.RenderTarget; import aerys.minko.render.material.basic.BasicShader; import aerys.minko.render.shader.SFloat; import aerys.minko.render.shader.ShaderSettings; import aerys.minko.render.shader.part.phong.LightAwareDiffuseShaderPart;...
package as_lisp.data { import as_lisp.error.LanguageError; /** * Cons cell, contains car and cdr elements. */ public class Cons { /** First value of this cons cell */ public var car :*; /** Second value of this cons cell */ public var cdr :*; public function Cons (car :* = null, cdr :* = null)...
/* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * ...
/** * FireFX by Grant Skinner. May 30, 2007 * Visit www.gskinner.com/blog for documentation, updates and more free code. * * * Copyright (c) 2011 Grant Skinner * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to ...
// Decompiled by AS3 Sorcerer 3.16 // http://www.as3sorcerer.com/ //fl.controls.ButtonLabelPlacement package fl.controls { public class ButtonLabelPlacement { public static const BOTTOM:String = "bottom"; public static const TOP:String = "top"; public static const LEFT:S...
/******************************************************************************* * PushButton Engine * Copyright (C) 2009 PushButton Labs, LLC * For more information see http://www.pushbuttonengine.com * * This file is licensed under the terms of the MIT license, which is included * in the License.html fil...
package com.tudou.player.skin.themes.tdtv { import com.tudou.player.skin.events.SkinNetStatusEventCode; import com.tudou.player.skin.widgets.Button; import com.tudou.player.skin.widgets.Label; import com.tudou.player.skin.widgets.LabelButton; import com.tudou.player.skin.widgets.Widget; import flash.display.Shap...
table knownTo "Map known gene to some other id" ( string name; "Same as name field in known gene" string value; "Other id" )
import hooks; import hook_globals; import generic_effects; import repeat_hooks; from generic_effects import GenericEffect; class SetCargoStorage : GenericEffect { Document doc("Sets a new amount of cargo storage to the object (THIS HAS NO INBUILT RACE CONDITION HANDLING, USE WITH CARE)."); Argument amount(AT_Decimal...
package control { import com.cgpClient.fileStorage.FileStorage; import model.Model; public class LoginCompleteAction { public function start():void { Model.instance.fileStorage = new FileStorage("private"); } } }
package bitfade.fast { import flash.geom.* import flash.display.* import flash.events.* import flash.filters.* import org.osflash.thunderbolt.Logger; public class clouds extends Sprite { // default conf // colors: default color gradient // s: wave speed // axes: wave axes // pos: wave starting p...
package flash.ui { /** * @externs * The Keyboard class is used to build an interface that can be controlled by * a user with a standard keyboard. You can use the methods and properties of * the Keyboard class without using a constructor. The properties of the * Keyboard class are constants representing t...
package org.spicefactory.parsley.lifecycle.asyncinit { import org.flexunit.assertThat; import org.hamcrest.object.equalTo; import org.spicefactory.lib.errors.AbstractMethodError; import org.spicefactory.parsley.core.context.Context; import org.spicefactory.parsley.lifecycle.asyncinit.model.AsyncInitModel; import org.s...
package twod { import flash.utils.ByteArray; public class IntDecoder { private var lower: String = 'abcdefghijklmnopqrstuvwxyz';//26 private var upper: String = lower.toUpperCase();//26 private var numeric: String = '0123456789';//10 private var other: String = '+-'; private var chars: String = lower+up...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
// Action script... // [Initial MovieClip Action of sprite 20716] #initclip 237 if (!dofus.datacenter.TutorialWaitingCase) { if (!dofus) { _global.dofus = new Object(); } // end if if (!dofus.datacenter) { _global.dofus.datacenter = new Object(); } // end if var _loc1 = (_gl...
// ================================================================================================= // // Starling Framework // Copyright 2011-2014 Gamua. All Rights Reserved. // // This program is free software. You can redistribute and/or modify it // in accordance with the terms of the accompanying license ag...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
package com.ankamagames.dofus.network.types.common.basic { import com.ankamagames.jerakine.network.ICustomDataInput; import com.ankamagames.jerakine.network.ICustomDataOutput; import com.ankamagames.jerakine.network.INetworkType; import com.ankamagames.jerakine.network.utils.FuncTree; public c...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
package com.playata.application.data.dataobject { import com.playata.framework.data.DataObject; public class DOFriend extends DataObject { public function DOFriend(param1:Object) { super(param1); } public function get userId() : int { re...
package com.ankamagames.dofus.uiApi { import com.ankamagames.berilia.interfaces.IApi; import com.ankamagames.berilia.types.data.UiModule; import com.ankamagames.dofus.logic.game.common.managers.TimeManager; import com.ankamagames.jerakine.logger.Log; import com.ankamagames.jerakine.logger.Logger; ...
package services.events.profiles.company { import services.cairngorm.BaseEvent; public class DeleteCompanyEvent extends BaseEvent { /** * This property contain id of profile by person, * which will be removed. */ private var _id:Number; /** * This property contain index of profile into the *...
package com.gamerisker.manager { /** * 场景需要加载的文件 * @author GameRisker * */ public class SceneSourceManager { /** * 场景XML文件的所有信息 */ private static var m_sceneData : Object; /** * 保存场景下所有资源路径 */ private static var m_sceneUrl : Object; /** * 保存场景下所有资源的id */ priva...
//////////////////////////////////////////////////////////////////////////////// // // Copyright 2011 Ruben Buniatyan. All rights reserved. // // This source is subject to the license agreement accompanying it. // //////////////////////////////////////////////////////////////////////////////// package flame.controls...
/* * _________ __ __ * _/ / / /____ / /________ ____ ____ ___ * _/ / / __/ -_) __/ __/ _ `/ _ `/ _ \/ _ \ * _/________/ \__/\__/\__/_/ \_,_/\_, /\___/_//_/ * /___/ * * Tetragon : Game Engine for multi-platform ActionScript projects. * http://w...
package away3d.bounds { import away3d.arcane; import away3d.core.math.*; import away3d.primitives.*; import flash.geom.*; use namespace arcane; /** * BoundingSphere represents a spherical bounding volume defined by a center point and a radius. * This bounding volume is useful for point lights. */ pub...
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ package PublicClass { import PublicClass.*; class ExtPublicOverRidePublicInner extends PublicClass { ...
// // $Id$ package com.threerings.msoy.hood { import com.adobe.serialization.json.*; /** * Represents a single game in a neighborhood: its name and id and logo. */ public class NeighborGame extends Neighbor implements LogoHolder { /** The hash of the game's logo, if any. */ public var gameLogo :String;...
package sound { import adobe.utils.CustomActions; import net.flashpunk.FP; import net.flashpunk.Sfx; import net.flashpunk.Tween; import net.flashpunk.tweens.sound.SfxFader; /** * ... * @author Maxime Preaux */ public class SoundPlayer { private static var tracks:Vector.<Sfx> = new Vector.<Sfx>(3); pri...
package serverProto.activityHub { import com.netease.protobuf.Message; import com.netease.protobuf.WritingBuffer; import flash.utils.IDataInput; import com.netease.protobuf.ReadUtils; public final class ProtoGetActivityMainUIRequest extends Message { public function ProtoGetActivityM...
/******************************************************************************* * This is the copyright work of The MITRE Corporation, and was produced for the * U. S. Government under Contract Number DTFAWA-10-C-00080. * * For further information, please contact The MITRE Corporation, Contracts Office, * 751...
/* Copyright (c) 2012 Josh Tynjala Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, su...
package org.papervision3d.core.math.util { import org.papervision3d.core.geom.renderables.Vertex3D; import org.papervision3d.core.math.NumberUV; public class InterpolationUtil { public static function interpolatePoint( a:Vertex3D, b:Vertex3D, alpha:Number ):Vertex3D { var dst:Vertex3D = new Vertex3D(); ...
package feathers.examples.youtube.screens { import feathers.controls.Button; import feathers.controls.Header; import feathers.controls.Label; import feathers.controls.List; import feathers.controls.Screen; import feathers.data.ListCollection; import feathers.examples.youtube.models.VideoDetails; import feathers...
/** * VERSION: 12.0.1 * DATE: 2013-02-09 * AS3 * UPDATES AND DOCS AT: http://www.greensock.com **/ package com.greensock.plugins { import com.greensock.TweenLite; import flash.geom.Matrix; import flash.geom.Transform; /** * [AS3/AS2 only] TransformMatrixPlugin allows you to tween a DisplayObject's transform.ma...
package ember.core { import flash.utils.Dictionary; final internal class NodesManager { private var _entities:Entities; private var _nodesMap:Dictionary; private var _factory:NodesFactory; private var _required:NodesComponentMap; private var _optional:NodesComponentMap; public function NodesManage...
package { import com.dobuki.ad.AdThingy; import flash.events.*; public class DobukiAdThingy extends AdThingy { public function DobukiAdThingy() { addEventListener(Event.ENTER_FRAME,onFrame); playGroup.playButton.addEventListener(MouseEvent.CLICK,onPlay); playGroup.visible = false; } private func...
/* * =BEGIN CLOSED LICENSE * * Copyright (c) 2013-2014 Andras Csizmadia * http://www.vpmedia.eu * * For information about the licensing and copyright please * contact Andras Csizmadia at andras@vpmedia.eu * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT N...
import ascb.util.Proxy; import caurina.transitions.*; import mx.data.types.Obj; import mx.data.types.Str; import mx.events.EventDispatcher; import asual.sa.SWFAddress; import agung.utils.UXml; import agung.utils.UNode; class agung.tech01.blog.komponenBlog extends MovieClip { private var xml:XML; p...
/* The MIT License Copyright (c) 2010 Jackson Dunstan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, pub...
// Decompiled by AS3 Sorcerer 6.08 // www.as3sorcerer.com //kabam.rotmg.packages.control.BeginnersPackageAvailableSignal package kabam.rotmg.packages.control { import org.osflash.signals.Signal; public class BeginnersPackageAvailableSignal extends Signal { public function BeginnersPackageAvail...
package feathers.examples.componentsExplorer.screens { import feathers.controls.Button; import feathers.controls.PanelScreen; import feathers.controls.TextInput; import feathers.skins.IStyleProvider; import feathers.system.DeviceCapabilities; import starling.core.Starling; import starling.display.DisplayObject;...
package net.psykosoft.psykopaint2.core.managers.misc { import net.psykosoft.notifications.NotificationsExtension; import net.psykosoft.notifications.events.NotificationExtensionEvent; import net.psykosoft.psykopaint2.core.configuration.CoreSettings; import net.psykosoft.psykopaint2.core.signals.NotifyMemoryWarning...
5.; 5.21e; 21e; # .32;
package org.bigbluebutton.air.settings.views.camera { import spark.components.Button; import spark.components.Group; import spark.components.Label; import spark.components.List; import spark.components.Scroller; import spark.components.VideoDisplay; import org.bigbluebutton.air.common.views.IView; public ...
package org.flexlite.domUI.layouts.supportClasses { import flash.events.Event; import flash.geom.Rectangle; import org.flexlite.domUI.components.supportClasses.GroupBase; import org.flexlite.domUI.core.IScrollable; import org.flexlite.domUI.core.NavigationUnit; import org.flexlite.domCore.dx_inter...
package utils.align { /** * Aligns each item vertically to the one above it. * Uses no spacing. * * @example <listing version="3.0">Alignment.valignNoSpace( [ clip0, clip1, clip2] );</listing> * * @param items An array of items */ public function verticalAlignNoSpace(items:Array):void { var n:int = i...
package { import flash.display.Sprite; import flash.display.StageAlign; import flash.display.StageScaleMode; import flash.events.Event; import flash.events.MouseEvent; import flash.external.ExternalInterface; import flash.net.URLRequest; import flash.net.navigateToURL; import flash.system.Security; import c...
package flash.accessibility { public class AccessibilityProperties extends Object { public var name:String; public var description:String; public var shortcut:String; public var silent:Boolean; public var forceSimple:Boolean; public var noAutoLabeling:...
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ // Test forward goto in the same block. // This should print "PASSED". var v = 0; function test(n) { if (n == 0)...
package game.desert { import game.Item; import net.flashpunk.Entity; import net.flashpunk.FP; import net.flashpunk.graphics.Image; import net.flashpunk.graphics.Spritemap; public class Tumbleweed extends Item { /** * Graphics */ [Embed(source = '../../../assets/desert/tumbleweed.png')] private const...
package { import com.takumus.ui.events.ListCellMouseEvent; import com.takumus.ui.list.CellData; import com.takumus.ui.list.List; import com.takumus.ui.list.ListCell; import flash.text.TextField; public class SampleCell extends ListCell{ private var _label:TextField; private var _buttonA:Button; private v...
/* Feathers Copyright 2012-2014 Joshua Tynjala. All Rights Reserved. This program is free software. You can redistribute and/or modify it in accordance with the terms of the accompanying license agreement. */ package feathers.controls { import feathers.core.FeathersControl; import feathers.core.IFeathersControl; im...
package com.neopets.games.inhouse.TopChop { //=================================================================== // imports //=================================================================== import com.neopets.util.events.*; import com.neopets.util.sound.*; import flash.display.*; import flash.events.*; ...
package game.view.viewBase { import com.utils.Constants; import feathers.controls.TextInput; import game.base.JTSprite; import game.manager.AssetMgr; import starling.display.Button; import starling.display.Image; import starling.textures.Texture; public class JTUIHeroEquipmentBase ex...
/* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * ...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF li...
// Decompiled by AS3 Sorcerer 6.08 // www.as3sorcerer.com //kabam.rotmg.assets.EmbeddedAssets_chars8x8rPetsKaratePenguin_ package kabam.rotmg.assets { import mx.core.BitmapAsset; [Embed(source="EmbeddedAssets_chars8x8rPetsKaratePenguin.png")] public class EmbeddedAssets_chars8x8rPetsKaratePenguin_ extends B...
package citrus.view.starlingview { import starling.core.Starling; import starling.display.MovieClip; import starling.display.Sprite; import starling.events.Event; import starling.textures.TextureAtlas; import org.osflash.signals.Signal; import flash.utils.Dictionary; /** * The Animation Seque...
//////////////////////////////////////////////////////////////////////////////// // // Licensed to the Apache Software Foundation (ASF) under one or more // contributor license agreements. See the NOTICE file distributed with // this work for additional information regarding copyright ownership. // The ASF license...
package kabam.rotmg.arena.view { import kabam.rotmg.arena.control.ReloadLeaderboard; import kabam.rotmg.arena.model.ArenaLeaderboardFilter; import kabam.rotmg.arena.model.ArenaLeaderboardModel; import kabam.rotmg.arena.service.GetArenaLeaderboardTask; import kabam.rotmg.dialogs.control.CloseDialogsSignal; import org....
animatee = sloth_mc; animated_mcs = ['bandana', 'headContainer']; animations = ['iconic','hidden', 'peek', 'peekIdle', 'peekWithdraw', 'drop', 'hangIdle1', 'hangIdle2', 'eat', 'spit', 'finishedEating', 'talk', 'climbUp', 'spit2', 'peekIdle2', 'peekSpit', 'devilStart', 'devil', 'devilEnd']; loopers = ['eat', 'devil']; ...
/* FLV Flash Fullscreen Video Player Copyright (C) 2008, Florian Plag, www.video-flash.de This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your o...
package com.lorentz.SVG.utils { import flash.display.Graphics; import flash.display.GraphicsPathCommand; import flash.utils.describeType; public class FlashPlayerUtils { private static var _supportsCubicCurves:Object = null; public static function get supportsCubicCurves():Boolean { if(_supportsCubicCurves...
/* * Copyright 2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
package org.osflash.dom.path.builder { import org.osflash.dom.element.IDOMNode; import org.osflash.stream.IStreamOutput; import org.osflash.stream.types.bytearray.StreamByteArrayOutput; /** * @author Simon Richardson - me@simonrichardson.info */ public class DOMPathBuilder implements IDOMPathBuilder { /*...
/** * @exampleText * * <a name="FrameStableMovieClip"></a> * <h1>FrameStableMovieClip</h1> * * <p>This is an example of the <a href="http://templelibrary.googlecode.com/svn/trunk/modules/ui/doc/temple/ui/animation/FrameStableMovieClip.html">FrameStableMovieClip</a>.</p> * * <p><a href="http://templelibrary.g...
/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- */ /* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can ob...
//////////////////////////////////////////////////////////////////////////////// // Copyright 2016 Prominic.NET, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.ap...
package { public final class Consts { public static const TIMER_INTERVAL:int = 100; public static const SWF_ON_LOAD:String = '._swfOnLoad'; public static const SWF_ON_ERR:String = '._swfOnErr'; public static const SWF_ON_STATE_CHANGE:String = '._swfOnStateChange'; } }
package org.as3lib.kitchensync.action.tween { import org.as3lib.kitchensync.KitchenSyncDefaults; import org.as3lib.kitchensync.action.*; import org.as3lib.kitchensync.core.*; import org.as3lib.kitchensync.easing.EasingUtil; import org.as3lib.kitchensync.utils.*; /** * Used for animating an object's properties...
/* * hexagonlib - Multi-Purpose ActionScript 3 Library. * __ __ * __/ \__/ \__ __ * / \__/HEXAGON \__/ \ * \__/ \__/ LIBRARY _/ * \__/ \__/ * * Licensed under the MIT License * * Copyright (c) 2007-2008 Sascha Balkau / Hexagon Star Softworks * * Permission is hereby gr...
package it.sephiroth.expr.ast { import hxasm.OpCode; import hxasm.Operation; import it.sephiroth.expr.SWFContext; public class AddExpression implements IExpression { private var _left: IExpression; private var _right: IExpression; public function AddExpression( left: IExpression, right: IExpression ) ...
//////////////////////////////////////////////////////////////////////////////// // // ADOBE SYSTEMS INCORPORATED // Copyright 2005-2006 Adobe Systems Incorporated // All Rights Reserved. // // NOTICE: Adobe permits you to use, modify, and distribute this file // in accordance with the terms of the license agreeme...
package { import openfl.display.Bitmap; import openfl.display.BitmapData; import openfl.display.Sprite; import openfl.display.Stage; import openfl.display.StageAlign; import openfl.display.StageScaleMode; import openfl.display3D.textures.Texture; import openfl.display3D.Context3D; import openfl.display3D.C...
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import com.adobe.test.Assert; var...
package com.rockdot.library.view.component.common.form { import com.greensock.TweenMax; import com.jvm.components.Orientation; import com.rockdot.library.view.component.common.ComponentScrollable; import com.rockdot.library.view.component.common.form.list.Cell; import com.rockdot.library.view.component.common.scro...
package States { import org.flixel.*; import Buttons.*; /** * ... * @author Nicholas 'A' Feinberg */ public class OverwriteState extends FlxState { [Embed(source = "/images/UI/floppy.png")] private static const save:Class; [Embed(source = "/images/UI/back.png")] private static const back:...
/** * Apache License * Version 2.0, January 2004 * http://www.apache.org/licenses/ * * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION * * 1. Definitions. * * "License" shall mean the terms and conditio...
package { import laya.display.Stage; import laya.ui.HScrollBar; import laya.ui.VScrollBar; import laya.utils.Handler; import laya.webgl.WebGL; public class UI_ScrollBar { public function UI_ScrollBar() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; ...
// ActionScript file package com.rh.xchain.vo { import com.adobe.cairngorm.vo.ValueObject; [Bindable] public class LoginVO implements ValueObject { public var username : String; public var password : String; public var loginDate : Date; } }
package sabelas.components { /** * Marker component for entity which is controlled by mouse interaction * @author Abiyasa */ public class MouseControl { } }
table simpleBarChart "BED6+5 with additional fields for category count and median values, and sample matrix fields" ( string chrom; "Reference sequence chromosome or scaffold" uint chromStart; "Start position in chromosome" uint chromEnd; "End position in chromosome" string name; ...
package org.spicefactory.parsley.lifecycle.observer.config { import org.spicefactory.parsley.lifecycle.observer.model.LifecycleEventCounterMetadata; /** * @author Jens Halm */ public class ObserveCounterAsConfig { public function get counter () : LifecycleEventCounterMetadata { return new LifecycleEventCounte...
package laya.wx.mini { import laya.events.Event; import laya.net.URL; import laya.resource.HTMLImage; import laya.utils.Browser; import laya.utils.Handler; /** @private **/ public class MiniImage { /**@private **/ protected function _loadImage(url:String):void { var thisLoader:* = this; //这里要预处理磁盘...
/* Copyright aswing.org, see the LICENCE.txt. */ package org.aswing{ import org.aswing.plaf.*; import org.aswing.plaf.basic.BasicMenuBarUI; import flash.events.Event; import org.aswing.event.ContainerEvent; /** * An implementation of a menu bar. You add <code>JMenu</code> objects to the * menu bar to construct a ...
/****************************************************************************** * Spine Runtimes License Agreement * Last updated January 1, 2020. Replaces all prior versions. * * Copyright (c) 2013-2020, Esoteric Software LLC * * Integration of the Spine Runtimes into software or otherwise creating * der...