Algorithm-VSM

 view release on metacpan or  search on metacpan

examples/corpus/SlideShowApplet.java  view on Meta::CPAN

                                 images[ frameIndex - 1 ],        //(E)
                                         JLabel.CENTER ) );
                    scrollableImage.setPreferredSize( 
                      new Dimension( 
                             displayWidth, displayHeight - 8 ) );
                }
                if ( scrollableImage != null ) {
                    contentPane.removeAll();
                    contentPane.add( scrollableImage );
                }
                contentPane.revalidate();
                contentPane.setVisible( true );
                newFrameAvailable = false;
            }
        };
        contentPane.setBackground(Color.white);                   //(F)
        setContentPane(contentPane);

        statusLabel = new JLabel("Loading Images...", JLabel.CENTER);
        statusLabel.setForeground( Color.red );
        contentPane.add(statusLabel);

examples/corpus_with_java_and_cpp/SlideShowApplet.java  view on Meta::CPAN

                                 images[ frameIndex - 1 ],        //(E)
                                         JLabel.CENTER ) );
                    scrollableImage.setPreferredSize( 
                      new Dimension( 
                             displayWidth, displayHeight - 8 ) );
                }
                if ( scrollableImage != null ) {
                    contentPane.removeAll();
                    contentPane.add( scrollableImage );
                }
                contentPane.revalidate();
                contentPane.setVisible( true );
                newFrameAvailable = false;
            }
        };
        contentPane.setBackground(Color.white);                   //(F)
        setContentPane(contentPane);

        statusLabel = new JLabel("Loading Images...", JLabel.CENTER);
        statusLabel.setForeground( Color.red );
        contentPane.add(statusLabel);



( run in 0.231 second using v1.01-cache-2.11-cpan-4d50c553e7e )