This is an automated email from the ASF dual-hosted git repository.
yishayw pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 1e3b815 Adding another model to network, can be convenient for
displaying thumbnails before uploading.
1e3b815 is described below
commit 1e3b81581b3ddb0845b3bdabe4e0915e6151c2c1
Author: DESKTOP-RH4S838\Yishay <[email protected]>
AuthorDate: Thu Feb 6 15:09:40 2020 +0200
Adding another model to network, can be convenient for displaying
thumbnails before uploading.
---
.../Network/src/main/resources/basic-manifest.xml | 1 +
.../beads/FileModelWithParamsAndFileContent.as | 58 ++++++++++++++++++++++
2 files changed, 59 insertions(+)
diff --git a/frameworks/projects/Network/src/main/resources/basic-manifest.xml
b/frameworks/projects/Network/src/main/resources/basic-manifest.xml
index 63dddec..3fb6d18 100644
--- a/frameworks/projects/Network/src/main/resources/basic-manifest.xml
+++ b/frameworks/projects/Network/src/main/resources/basic-manifest.xml
@@ -35,4 +35,5 @@
<component id="FileLoaderAndUploader"
class="org.apache.royale.file.beads.FileLoaderAndUploader"/>
<component id="FileModel" class="org.apache.royale.file.beads.FileModel"/>
<component id="FileModelWithParams"
class="org.apache.royale.file.beads.FileModelWithParams"/>
+ <component id="FileModelWithParamsAndFileContent"
class="org.apache.royale.file.beads.FileModelWithParamsAndFileContent"/>
</componentPackage>
diff --git
a/frameworks/projects/Network/src/main/royale/org/apache/royale/file/beads/FileModelWithParamsAndFileContent.as
b/frameworks/projects/Network/src/main/royale/org/apache/royale/file/beads/FileModelWithParamsAndFileContent.as
new file mode 100644
index 0000000..93dd428
--- /dev/null
+++
b/frameworks/projects/Network/src/main/royale/org/apache/royale/file/beads/FileModelWithParamsAndFileContent.as
@@ -0,0 +1,58 @@
+//
+// 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 licenses this file to You under the Apache License, Version 2.0
+// (the "License"); you may not use this file except in compliance with
+// the License. You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+package org.apache.royale.file.beads
+{
+ /**
+ * The FileModelWithParamsAndFileContent behaves like
FileModelWithParams but retains the file content.
+ * This can be useful e.g. for displaying a thumbnail of a file you
are about to upload in FormData format.
+ *
+ *
+ * @toplevel
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion Royale 0.9.7
+ */
+ import org.apache.royale.utils.BinaryData;
+ public class FileModelWithParamsAndFileContent extends
FileModelWithParams
+ {
+ public function FileModelWithParamsAndFileContent()
+ {
+ super();
+ }
+
+ /**
+ *
+ * @langversion 3.0
+ * @playerversion Flash 10.2
+ * @playerversion AIR 2.6
+ * @productversion Royale 0.9.7
+ */
+ private var _fileContent:BinaryData;
+ override public function set fileContent(value:BinaryData):void
+ {
+ _fileContent = value;
+ super.fileContent = value;
+ }
+
+ public function get fileContent():BinaryData
+ {
+ return _fileContent;
+ }
+ }
+}