Comments
Richard Davies wrote: The UK has a good crop of technology pioneers in cloud computing - for example ElasticHosts, FlexiScale, Flexiant, OnApp - and also some strong government initiatives such as G-Cloud. We will have to see whether this kind of technical leadership converts into swift mass-market adoption or not.
Cloud Expo on Google News


2008 West
DIAMOND SPONSOR:
Data Direct
SOA, WOA and Cloud Computing: The New Frontier for Data Services
PLATINUM SPONSORS:
Red Hat
The Opening of Virtualization
GOLD SPONSORS:
Appsense
User Environment Management – The Third Layer of the Desktop
Cordys
Cloud Computing for Business Agility
EMC
CMIS: A Multi-Vendor Proposal for a Service-Based Content Management Interoperability Standard
Freedom OSS
Practical SOA” Max Yankelevich
Intel
Architecting an Enterprise Service Router (ESR) – A Cost-Effective Way to Scale SOA Across the Enterprise
Sensedia
Return on Assests: Bringing Visibility to your SOA Strategy
Symantec
Managing Hybrid Endpoint Environments
VMWare
Game-Changing Technology for Enterprise Clouds and Applications
Click For 2008 West
Event Webcasts

2008 West
PLATINUM SPONSORS:
Appcelerator
Get ‘Rich’ Quick: Rapid Prototyping for RIA with ZERO Server Code
Keynote Systems
Designing for and Managing Performance in the New Frontier of Rich Internet Applications
GOLD SPONSORS:
ICEsoft
How Can AJAX Improve Homeland Security?
Isomorphic
Beyond Widgets: What a RIA Platform Should Offer
Oracle
REAs: Rich Enterprise Applications
Click For 2008 Event Webcasts
SYS-CON.TV
Top Links You Must Click On


Adobe Flex: Program in Style or an Elevator Pitch
All students usually get excited by Adobe Flex, but each of them comes with different understanding of how to do things right

From Farata  Systems blog

We usually run Flex training for  private clients of Farata Systems , but once in a while we teach public classes for people with different programming background (my next Flex class at New York University starts in November).  All students usually get excited by Adobe Flex, but each of them comes with different understanding of how to do things right. So I’ll tell you the  story  that might have happened in a real life, but first, let me remind you of an old Indian tale about seven blind men and an elephant .  In short, one blind man touched the elephant’s head, the other one touched the tail, someone was by the leg. And each of them visualized an elephant differently based on what he touched…

My students usually arrive to the classroom early, but this time three seats were empty. Five minutes later I got a phone call from one of them explaining that they got stuck in the elevator and will stay there for another fifteen minute until the serviceman arrives. Needless to say that each of them had a laptop (do not leave home without it), so I gave them a short assignment to trying to help them use this time productively.

Here’s the assignment: Create a Window with a Panel  that can resize itself by clicking on the button +/- that is located in the right corner of the panel. One click should minimize the panel’s  height to  20 pixels, and a  subsequent  one should maximize to 100 pixels, and so on. 

For example, these are the two states of such panel:

 I forgot  to tell you that one of these guys was a Cobol programmer, the other one had Java background, and the third one was a Smalltalk fan.

From  Cobol to Flex

The Cobol programmer thought to himself,”I used to write long programs because during job interviews they would  ask how many lines of code did I write. These guys are different, so to earn a good grade, this program should be small ”. He finished the program on time and this is what it looked like:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
     <mx:Panel id="thePanel" title="The Panel" height="90" width="100%" headerHeight="20" />
     <mx:HBox width="100%" horizontalAlign="right" paddingRight="2">
       <mx:Label text="-"  fontSize="16" width="20" height="17" fontWeight="bold"
             id="minimizeActions"
             click="{if (minimizeActions.text=='+'){
                          minimizeActions.text='-';
                          thePanel.height=100;
                      } else {
                         minimizeActions.text='+';
                          thePanel.height=20;
                      }
                     }" />
     </mx:HBox>  
</mx:Application>

From  Java  to Flex

The Java programmer thought, “The standard Flex Panel class does not have the  property that remembers the current state of the Panel, but Flex components are easily extendable, so I’ll create a descendent of the Panel in ActionScript, add a private  state flag (minimized) , public setter and getter,  and resize function. This way my new Panel class will be reusable and self contained.”  This is his reusable ActionScript class called ResizableJPanel:

package {
            import mx.containers.Panel;
            public class ResizableJPanel extends Panel   {
                        // state of the panel
                       private  var isPanelMinimized:Boolean;                       

                        public function get minimized():Boolean{
                            return isPanelMinimized;    
                        }

                       public function set minimized(state:Boolean){
                             isPanelMinimized=state;
                        }
                        
                       public function resizeMe():void{
   
                        if (minimized){
        
                       minimized=false;
         
                     height=maxHeight;
           
                } else {
               
                 minimized=true;
                 
              height=minHeight;
                    
       }
            }    
  }       
}

This is Javist's  mxml code:

<?xml version="1.0" encoding="utf-8"?>

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:local="*" layout="absolute"
     applicationComplete="minimizeActions.addEventListener(MouseEvent.CLICK, resizePanel);">
   <mx:Canvas id="theCanvas" height="100" width="100%" >                
     <local:ResizableJPanel id="thePanel"  height="90" width="100%"
             title="The Paaanel" minHeight="20" maxHeight="100" headerHeight="20" />
     <mx:HBox width="100%" horizontalAlign="right" paddingRight="2">
       <mx:Label text="-"  fontSize="16" width="20" height="17" fontWeight="bold"
             id="minimizeActions"  />
     </mx:HBox>
   </mx:Canvas>        
  <mx:Script>
       <![CDATA[
        function resizePanel(event:MouseEvent):void{
         if (thePanel.minimized){
             minimizeActions.text="-";
             thePanel.resizeMe();
             theCanvas.height=thePanel.maxHeight;
         } else {
             minimizeActions.text="+";
             thePanel.resizeMe();
             theCanvas.height=thePanel.minHeight;
         }
    }

       ]]>
   </mx:Script>
</mx:Application>

From  Smalltalk to Flex

The Smalltalk guy thought, “Let me see if the standard Panel is a dynamic class. If not I’ll extend  it just to make it dynamic and will be assigning the panel’s state on the fly. I hope Yakov is not one of these object-oriented Nazis”. This is his panel ActionScript class that just adds a dynamic behavior to the Panel:

package{
    import mx.containers.Panel;
    public dynamic class ResizableSmtPanel extends Panel
            {
    }     
}

His mxml class looked like this:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" layout="absolute">
     <ResizableSmtPanel title="The Panel" id="thePanel"  height="90" width="100%" 
                            minHeight="20" maxHeight="100" headerHeight="20">
     </ResizableSmtPanel>
     <mx:HBox width="100%" horizontalAlign="right" paddingRight="2">
           <mx:Label text="-"  fontSize="16" width="20" height="17" fontWeight="bold"
             id="minimizeActions" click="resizePanel()" />
      </mx:HBox>
  <mx:Script>

            <![CDATA[

        function resizePanel():void{
             if (thePanel.minimized){
                  minimizeActions.text="-";
                  thePanel.minimized=false;
                 thePanel.height=thePanel.maxHeight;
         } else {
                   minimizeActions.text="+";
                   thePanel.minimized=true;
                   thePanel.height=thePanel.minHeight;
         }
      }
            ]]>
</mx:Script>

Since we are not in the classroom, I’m not going to go to  a code review and lengthy discussions, I will just say the I gave an “A” to each of these guys...and here's the Flex version:

<?xml version="1.0" encoding="utf-8"?>

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" layout="absolute">
<mx:Component className="ResizablePanel">
   <mx:Panel>
    <mx:Script>
 
     [Bindable]  
     public var minimized:Boolean = false;
    </mx:Script>
 </mx:Panel>
</mx:Component>

<ResizablePanel title="The Panel" id="thePanel"  minimized="false" height="{thePanel.minimized?thePanel.minHeight:thePanel.maxHeight}" width="99%"
                            minHeight="20" maxHeight="100" headerHeight="20"/>
     <mx:HBox width="99%" horizontalAlign="right" paddingRight="2">
           <mx:Label text="{thePanel.minimized?'+':'-'}"  fontSize="16" width="20" height="17" fontWeight="bold"
             id="minimizeActions" click="{thePanel.minimized=!thePanel.minimized}" />
      </mx:HBox>
</mx:Application>

What’s the morale of this story? Learn another language,  no matter what’s your current background. Initially you will try to bring your own culture to this new language, but eventually your horizons will broaden, which will make you a better programmer.

P.S. Isn’t it  funny that  the Cobol guy’s version was the shortest one? But was it the best one?  Can you offer a different solution?

About Yakov Fain
Yakov Fain is a Managing Director of Farata Systems, consulting, training and product company. He has authored several Java books, dozens of technical articles. SYS-CON Books released his latest co-authored book , Rich Internet Applications with Adobe Flex and Java: Secrets of the Masters in Spring 2007. Sun Microsystems has nominated and awarded Yakov with the title Java Champion. He leads the Princeton Java Users Group. He is an Adobe Certified Flex Instructor. Yakov co-athored the O'Reilly book "Enterprise Application Development with Flex". He twits at twitter.com/yfain.

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

Shalom,

OK, so this post is two years old, but I just found it today and appreciated it a lot. Very instructive, indeed. Since you asked for more versions to achieve the desired resizeable canvas, may I offer mine. It is in the line of the Flex version offered at the end, only simplified.

Here it is:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" layout="absolute">
<mx:Script>
[Bindable]
public var minimized:Boolean = false;
</mx:Script>

<mx:Panel title="The Panel" id="thePanel" height="{minimized?thePanel.minHeight:thePanel.maxHeight}" width="99%" minHeight="20" maxHeight="100" headerHeight="20"/>

<mx:HBox width="99%" horizontalAlign="right" paddingRight="2">
<mx:Label text="{minimized?'+':'-'}" fontSize="16" width="20" height="17" fontWeight="bold" click="{minimized=!minimized}" />
</mx:HBox>
</mx:Application>

Thanks again.

Daniel Szmulewicz

PS: I'm looking for a job. Do I win one?

We usually run Flex training for private clients of Farata Systems, but once in a while we teach public classes for people with different programming background (my next Flex class at New York University starts in November). All students usually get excited by Adobe Flex, but each of them comes with different understanding of how to do things right. So I'll tell you the story that might have happened in a real life, but first, let me remind you of an old Indian tale about seven blind men and an elephant. In short, one blind man touched the elephant's head, the other one touched the tail, someone was by the leg. And each of them visualized an elephant differently based on what he touched.


Your Feedback
Daniel Szmulewicz wrote: Shalom, OK, so this post is two years old, but I just found it today and appreciated it a lot. Very instructive, indeed. Since you asked for more versions to achieve the desired resizeable canvas, may I offer mine. It is in the line of the Flex version offered at the end, only simplified. Here it is: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" layout="absolute"> <mx:Script> [Bindable] public var minimized:Boolean = false; </mx:Script> <mx:Panel title="The Panel" id="thePanel" height="{minimized?thePanel.minHeight:thePanel.maxHeight}" width="99%" minHeight="20" maxHeight="100" headerHeight="20"/> <mx:HBox width="99%" horizontalAlign="right" paddingRight="2"> <mx:Label text="{minimized?'+':'-'}" fontSize="16" width="20" hei...
AJAXWorld News Desk wrote: We usually run Flex training for private clients of Farata Systems, but once in a while we teach public classes for people with different programming background (my next Flex class at New York University starts in November). All students usually get excited by Adobe Flex, but each of them comes with different understanding of how to do things right. So I'll tell you the story that might have happened in a real life, but first, let me remind you of an old Indian tale about seven blind men and an elephant. In short, one blind man touched the elephant's head, the other one touched the tail, someone was by the leg. And each of them visualized an elephant differently based on what he touched.
Enterprise Open Source Magazine Latest Stories . . .
Apache Deltacloud, the Red Hat-contributed ReSTful API that abstracts differences between clouds so services on any cloud can be managed – provided of course there’s a driver – has graduated from the Apache Foundation’s incubator and is now a full-fledged Top-Level Project (TLP). The...
With Cloud Expo 2012 New York (10th Cloud Expo) just four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference... We have technical and st...
AMD said late Tuesday that its chief sales officer Emilio Ghilardi had left the company and that CEO and president Rory Read is going to do his job while a replacement is sought. AMD didn’t say why Ghilardi left but it’s assumed Read wants his own people. Read is relatively new to th...
During the lifespan of M3 (Monitis Monitor Manager) there has always been something lacking – timers. M3 execution procedure was outlined in this previous article. The execution mentioned in the latter was a one-time-execution, whereas server monitoring requires periodic invocati...
Red Hat is putting its bought-in Gluster scale-out NAS storage technology, acquired in October, on the Amazon cloud. It’s styled Red Hat Virtual Storage Appliance for Amazon Web Services and other clouds are supposed to follow in short order.
A new episode of the screencast series is now available at the OpenNebula YouTube Channel. This screencast demonstrates the new easily-customizable self-service portal for cloud consumers. Its aim is to offer a simplified access to shared infrastructure for non-IT end users. The scree...
Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021


SYS-CON Featured Whitepapers
ADS BY GOOGLE