Could someone take a look at this code?

The following code is mean to implement a listener for a text area object and to listen for text being entered:
abstract class DocChange implements javax.swing.event.DocumentListener
         public void textValueChanged(javax.swing.event.DocumentEvent event)
               Object object = messageTextArea.getDocument();
               if (object.toString().length() !=0)
                    txtMessageTextArea_TextValueChanged(event);
void txtMessageTextArea_TextValueChanged(javax.swing.event.DocumentEvent event)
          toolBar.getComponent(5).setVisible(true);
     }What it's supposed to do is detect when text is typed within it and set the button in question to be visible if text is typed and then invisible
if the text is removed. (The button has been set to be invisible previously). I am not sure how to implement the document listener for the messageTextArea object. Could anyone tell me how to do that and if they see anything wrong with this approach?
Thanks a lot.

when you implement an interface, you must define all of the methods in that interface. That is because all of the methods of the interface are implicitly public and abstract. The reason it told you to declare DocChange as abstract is because if you don't define the methods that you implemented from DocumentListener, which are abstract, then the class that implements the interface must be declared abstract.

Similar Messages

  • Could someone take a look at this preloading issue?

    Hi guys,
    I'm working on a site that's going to have lot of images
    loaded into the same area. When the user clicks on the image it
    will shrink and reveal other images and a text field. The problem
    I'm having is that after my preloader finishes it seems to blink
    all the stuff that is supposed to be underneath the big picture and
    then it shows the big picture.
    Here's a link so you can see what I'm talking about:
    http://www.stationarynotes.com/studioI/preloader.html
    You can also go to
    http://www.stationarynotes.com/studioI/
    to download my .fla files. If anyone would be kind enough to
    look at this really quick for me I would greatly appreciate it.
    Thanks guys.

    i don't see a problem.

  • Could someone take a look at this please

    I requested it be moved over here but it hasn't been and I don't see another post here from the same user.
    http://discussions.apple.com/thread.jspa?threadID=2435712&tstart=0

    It seems the post has now been moved.
    Many thanks to all.

  • Someone take a look at this

    im getting a tcpip error with my dsl and its causeing my damn explorer to pause every minute
    i know this applet takes a while to load but i cant get a good time on it
    someone take a look and tell me how long it takes to load
    i know the applet pauses it has a gc problem
    its a old zbuffer i tryed to write woulda been cool if i ever rewrote it
    but its huge
    http://www.geocities.com/donna_dulgo/lastZbufferversion/test1_0e.html
    [/code]

    seems to work fine to me

  • Media query issues in fluid grid layout (take a look at this code)

    how to make adjustments in specific device views without screwing everything up in other views. I know in the css designer when I click global it makes changes to all views which is great. But when I click one of the little icons at the button of the screen (like the smartphone icon or tabet etc) the changes I make in the view dont stay in that view but affect all views. So I'm coming to understand ( maybe wrongly) that those icon have no design power other than to show you what thing look like in that view. I'm starting to focus on clicking the stlye sheet dreamweaver cc created (not the boilerplate one) clicking the media query for the screen size I want to adjust and finding the selector I want to tweek (ITS RIGHT HERE THE HICKUP I'M HAVING IS AT - i CANT ADJUST  IMAGES THAT I HAVE SPECIFICALLY IN THE CORRESPONDING VIEW WITHOUT SCREWING EVERYTHING EVERYWHERE UP IN THE OTHER VIEWS) Can anybody invision what I'm trying to do and what happening and give me a fix????
    Idealy I would like to simply click the view icon of the screen size I want to tweak and drag handle bars to resize images and the adjustment stay only in that sceen size range, but this is not happening. This why I say that those (may wrongly I might be doing something wrong) icons have no design power other than to give you a view of things. But either way whether I can click icons and rag handle handle bars or in I have to use css designer I cant specifically work in one view without affecting all the others.
    Below is css code for media queries that are in my style sheet. It might not be the cleanest bit I want you to focus on two main aspsects of the code
         1) The media queries, particularly the smartphone 480 and below. ( but all media queries if need be)
         2) In the header and in the list iteams I have images. Its these images that I'm trying to resize - but only specific changes in specific views
    Take a look:
    /* Mobile Layout: 480px and below. */
    .gridContainer {
              margin-left: auto;
              margin-right: auto;
              width: 100%;
              padding-left: 0;
              padding-right: 0;
              clear: none;
              float: none;
    #div1 {
    #mainheader {
              margin-left: 0;
              position: static;
              height: auto;
              width: 100%;
    #navbarone {
    #navbartwo {
    #listiteams {
              color: #FFFFFF;
              text-align: center;
              background-color: #9DC5D3;
    #listiteamstwo {
              text-align: center;
              background-color: #9DC5D3;
              color: #FFFFFF;
    #navbutton {
    width: 100%;
    #li1 {
    width: 100%;
    clear: both;
    margin-left: 0;
    #li2 {
    width: 100%;
    clear: both;
    margin-left: 0;
    #navbuttontwo {
    width: 100%;
    #li3 {
    width: 100%;
    clear: both;
    margin-left: 0;
    #li4 {
              width: 100%;
              clear: both;
              margin-left: 0;
    #flads {
    .zeroMargin_mobile {
    margin-left: 0;
    .hide_mobile {
    display: none;
    /* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
    @media only screen and (min-width: 481px) {
    .gridContainer {
              width: 100%;
              padding-left: 0;
              padding-right: 0;
              clear: none;
              float: none;
              margin-left: auto;
    #div1 {
    #mainheader {
              position: static;
              height: auto;
              width: 100%;
              margin-left: 0;
    #navbarone {
    #navbartwo {
    #listiteams {
    #listiteamstwo {
    #navbutton {
    width: 32.2033%;
    #li1 {
    width: 32.2033%;
    clear: none;
    margin-left: 0;
    #li2 {
    width: 32.2033%;
    clear: none;
    margin-left: 0;
    #navbuttontwo {
    width: 32.2033%;
    #li3 {
    width: 32.2033%;
    clear: none;
    margin-left: 0;
    #li4 {
    width: 32.2033%;
    clear: none;
    margin-left: 0;
    #flads {
    .hide_tablet {
    display: none;
    .zeroMargin_tablet {
    margin-left: 0;
    /* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
    @media only screen and (min-width: 769px) {
    .gridContainer {
              width: 100%;
              max-width: 2000px;
              padding-left: 0;
              padding-right: 0;
              margin: auto;
              clear: none;
              float: none;
              margin-left: auto;
    #div1 {
    #mainheader {
              position: static;
              height: auto;
              width: 100%;
              margin-left: 0;
    #navbarone {
    #navbartwo {
    #listiteams {
    #listiteamstwo {
    #navbutton {
    width: 32.7731%;
    #li1 {
    width: 32.7731%;
    margin-left: 0;
    clear: none;
    #li2 {
    width: 32.7731%;
    margin-left: 0;
    clear: none;
    #navbuttontwo {
    width: 32.7731%;
    #li3 {
    width: 32.7731%;
    margin-left: 0;
    clear: none;
    #li4 {
    width: 32.7731%;
    margin-left: 0;
    clear: none;
    #flags {
    .zeroMargin_desktop {
    margin-left: 0;
    .hide_desktop {
    display: none;

    By default, image height and width are 100% in FluidGrid Layouts.  You'll find it near the top of your CSS code.
    @charset "utf-8";
    img, object, embed, video {
    max-width: 100%;
    .ie6 img {
    width:100%;
    That's so they can re-scale to fit the various layouts.  If you need to assign explicit height & width values to certain elements, you can override that CSS rule by using the height & width attributes in your HTML code like this. 
    <img src="some_image.jpg" height="xxx"  width="xxx">
    Or, you can give your image a class name and target that class with CSS Media Queries.  For an example, copy & paste this code into a new, blank document.  SaveAs test.hml and preview in browsers at different screen widths.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style>
    /**FLUID GRID DEFAULT**/
    img, object, embed, video{
    max-width: 100%;
    .ie6 img {
    width:100%;
    /* Special Rules for mobiles */
    @media only screen and (max-width: 480px) {
    .nav {width:320px; height:74px; }
    /* Special Rules for Tablets */
    @media only screen and (min-width: 482px) and (max-width: 1024px) {
    .nav {width: 480px; height: 148px;}
    /* Special Rules for Desktops */
    @media only screen and (min-width: 1025px) and (max-width: 1230px) {
    .nav {width: 1000px; height: 225px;}
    </style>
    </head>
    <body>
    <h3>This image naturally rescales to layout</h3>
    <img src="http://placehold.it/1000x225" alt="some description">
    <h3>This image has a .nav class &amp; rescales to set media query break points.</h3>
    <img class="nav" src="http://placehold.it/1000x225" alt="some description">
    </body>
    </html>
    Does this make sense now?
    Nancy O.

  • Could someone take a peek at this Etresoft report?

    Hi there. So on my MBP 2013, I'm getting some slow downs. I looked around and found the software Etresoft from a recommendation. I ran it, and got a few red responses. But I'm not very knowledgeable in this area. Anyone with experience with Etresoft be able to take a quick look at the report? Thank you so much!
    Problem description:
    slow internet
    EtreCheck version: 2.0.6 (91)
    Report generated October 29, 2014 at 12:37:38 PM EDT
    Hardware Information: ℹ️
      MacBook Pro (Retina, 15-inch, Early 2013) (Verified)
      MacBook Pro - model: MacBookPro10,1
      1 2.4 GHz Intel Core i7 CPU: 4-core
      8 GB RAM Not upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en0: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 4000 -
      NVIDIA GeForce GT 650M - VRAM: 1024 MB
      Color LCD spdisplays_2880x1800Retina
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: one day 13:35:25
    Disk Information: ℹ️
      APPLE SSD SM256E disk0 : (251 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) /  [Startup]: 249.78 GB (79.50 GB free)
      Encrypted AES-XTS Unlocked
      Core Storage: disk0s2 250.14 GB Online
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Configuration files: ℹ️
      /etc/hosts - Count: 21
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Applications/Capture One.app
      [not loaded] com.Leaf.driver.LeafFwXDriverMatcher (1.2.0d1) Support
      /Applications/Dr.Web for Mac OS X.app
      [not loaded] com.drweb.kext.DrWebMonitor (1 - SDK 10.9) Support
      [loaded] com.drweb.kext.DrWebMonitorMaverick (1 - SDK 10.9) Support
      /Applications/Parallels Desktop.app
      [not loaded] com.parallels.kext.hidhook (9.0 24172.951362) Support
      [not loaded] com.parallels.kext.hypervisor (9.0 24172.951362) Support
      [not loaded] com.parallels.kext.netbridge (9.0 24172.951362) Support
      [not loaded] com.parallels.kext.usbconnect (9.0 24172.951362) Support
      [not loaded] com.parallels.kext.vnic (9.0 24172.951362) Support
      /Applications/TechTool Pro 7.app
      [not loaded] com.micromat.driver.spdKernel (1 - SDK 10.8) Support
      /Applications/Wondershare AllMyMusic.app
      [not loaded] com.Perfect.Driver.SystemAudioRecorder (1.0.0 - SDK 10.6) Support
      /Users/[redacted]/Library/Application Support/Transmit/Transmit Disk.app
      [not loaded] com.panic.TransmitDisk.transmitdiskfs (4.0.0 - SDK 10.6) Support
    Startup Items: ℹ️
      ProTec6b: Path: /Library/StartupItems/ProTec6b
      Startup items are obsolete and will not work in future versions of OS X
    Problem System Launch Agents: ℹ️
      [failed] com.apple.CallHistoryPluginHelper.plist
      [failed] com.apple.spindump_agent.plist
    Problem System Launch Daemons: ℹ️
      [failed] com.apple.ctkd.plist
      [failed] com.apple.findmymac.plist
      [failed] com.apple.nsurlsessiond.plist
      [failed] com.apple.softwareupdate_download_service.plist
      [failed] com.apple.wdhelper.plist
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.drweb.pro.guiagent.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [not loaded] com.teamviewer.teamviewer.plist Support
      [not loaded] com.teamviewer.teamviewer_desktop.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [invalid?] com.adobe.SwitchBoard.plist Support
      [loaded] com.bombich.ccc.plist Support
      [running] com.drweb.pro.configd.plist Support
      [running] com.drweb.pro.deploy.plist Support
      [loaded] com.github.GitHub.GHInstallCLI.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [loaded] com.prosofteng.DriveGenius.locum.plist Support
      [not loaded] com.teamviewer.teamviewer_service.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [running] com.ecamm.printopia.plist Support
      [not loaded] com.linotype.FontFolderProtector.plist Support
      [invalid?] com.nds.pcshow.plist Support
      [invalid?] com.nds.pcshow.uninstall.plist Support
      [invalid?] com.wondershare.mobilegoiOSMacWatchDemo.plist Support
    User Login Items: ℹ️
      FontExplorerXAutoload ApplicationHidden (/Users/[redacted]/Library/Application Support/Linotype/FontExplorer X/FontExplorerXAutoload.app)
      iTunesHelper Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      MGWatch UNKNOWN (missing value)
      Copy UNKNOWN (missing value)
    Internet Plug-ins: ℹ️
      o1dbrowserplugin: Version: 5.4.2.18903 Support
      Default Browser: Version: 600 - SDK 10.10
      AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 Support
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 10.1.12 Support
      Silverlight: Version: 5.1.20125.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      googletalkbrowserplugin: Version: 5.4.2.18903 Support
      SharePointBrowserPlugin: Version: 14.4.5 - SDK 10.6 Support
      AdobePDFViewer: Version: 10.1.12 Support
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User Internet Plug-ins: ℹ️
      CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 Support
    Safari Extensions: ℹ️
      1Password
      Add To Amazon Wish List
      Open in Internet Explorer (Disabled)
      Folx
      Aimersoft
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      MediaLink  Support
      Printopia  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Destinations:
      My Book [Network]
      Total size: 0 B
      Total number of backups: 0
      Oldest backup: -
      Last backup: -
      Size of backup disk: Excellent
      Backup size 0 B > (Disk size 0 B X 3)
    Top Processes by CPU: ℹ️
          16% CocoaDialog
          11% defaults
          8% WindowServer
          5% drweb-spider
          3% 7zX
    Top Processes by Memory: ℹ️
      223 MB Finder
      198 MB Mail
      180 MB Safari
      172 MB WindowServer
      163 MB Adobe Photoshop CS6
    Virtual Memory Information: ℹ️
      175 MB Free RAM
      2.86 GB Active RAM
      2.77 GB Inactive RAM
      1.75 GB Wired RAM
      14.78 GB Page-ins
      1.10 GB Page-outs

    Please describe the problem in as much relevant detail as possible. The "etrecheck" fad hasn't made that step any less necessary. The better your description, the better the chance of a solution.
    For example, if the computer is slow, which specific actions are slow? Is it slow all the time, or only sometimes? What changes did you make, if any, just before it became slow? Have you seen any alerts or error messages? Have you done anything to try to fix it? Most importantly, do you have a current backup of all data? If the answer to the last question is "no," back up now. Ask if you need guidance. Do nothing else until you have a backup.

  • Someone please take a look at this

    Please take a look at this.
    This is my jsp file:
    <%@ page import="java.sql.*" %>
    <%
    String url="jdbc:mysql://localhost/ali";
    String user="root";
    String password="";
    Connection conn=null;
    String classPath="com.mysql.jdbc.Driver";
    try{
         Class.forName(classPath);
         conn = DriverManager.getConnection(url,user,password);
         }catch(Exception exc){
         out.println(exc.toString());
    %>
    <%
         Statement stm=conn.createStatement();
         String update="CREATE TABLE product(id varchar(20) PRIMARY KEY, name char(20))";
         try{
              stm.executeUpdate(update);
              out.println("Successful")
         }catch(Exception exc){
              out.println("sorry loser!!");
         stm.close();
         conn.close();
    %>
    but when I try opening it up in tomcat i get this error:
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 16 in the jsp file: /mytest/createTable.jsp
    Generated servlet error:
    [javac] Compiling 1 source file
    /usr/java/jakarta-tomcat-4.1.31/work/Standalone/localhost/_/mytest/createTable_jsp.java:64: ';' expected
         }catch(Exception exc){
    ^
    1 error
         at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:85)
         at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:248)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:315)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:328)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:427)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:142)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)

    i've repaired that one already but now i get this.Please....Help me.
    org.apache.jasper.JasperException
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:207)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    root cause
    java.lang.NullPointerException
         at org.apache.jsp.createTable_jsp._jspService(createTable_jsp.java:60)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)

  • Has Anyone NOT Tried LiveType Yet ? Take A Look At This.

    At the beginning of the year I made a 7 minute video demonstrating just a tiny percentage of the numerous effects available with LiveType.
    It was designed to show PC members of my video club what was available to FCE users.
    For any of you who have not yet tried LiveType, take a look at this video. It does get a bit L - O - N - G .... (or boring?) but it might whet your appetite.
    There is a short film at the end.
    Be warned, there is a tremendous loss of quality when viewed on the web but I hope it gives a flavour of the original:-
    http://www.youtube.com/watch?v=Vj8Tr0ngpfM
    Ian.

    I certainly don't want to squash anyone's accomplishments here, but I just wanted to give my two cents on what I feel is LiveType's very limited use. I have a problem with pre-fab software in general, simply because I usually have a very hard time fitting it to my needs. Granted, I have probably not spent as much time LiveType as I should to be making these criticisms, but every time I go through LT and make some titles, all I want to do is tweak them fit the visual style I want. For whatever reason, I do not find LT's interface very intuitive, and leave frustrated. I get the impression that LT isn't really design for hand crafting effects (I could be wrong?).
    I also find that the pre-fab effects in LT are really over the top. How many uses am I going to have for text that appears in a slot machine, or has lightning flying off of it in all different directions? Usually, I'm looking for something that's subtle, effective, and graphically pleasing. A lot of LT's effects just scream Public Access (or old school Video Toaster).
    In a pinch, it does provide a lot of options. But I think if you find yourself in the pro world, most studios are going to shy away from it because people are going to know its stock pre-fab LT from a mile away. I know sometimes I'll be watching an ad on TV and hear some of the stock Soundtrack loops, and I'll just laugh to myself.
    What I'm saying is, LT will only take you so far in adding fancy-schmancy effects. I know its easy, I know its free. But if you suddenly find yourself getting that itch for motion graphics, take the time to check out Motion (which is also pretty easy and straightforward) or After Effects (which honestly, has endless possbilities).
    *Sorry if that sounded a little over-zealous. After I posted I realized I was in the FCE forum. Still, if you find you really like this kind of stuff, check out the Pro software**

  • I purchased a digital itunes giftcard through paypal but can't seem to find a 'code' to use to redeem the card. Could someone help me find where that code would be found? I can see the paypal transaction details.

    I purchased a digital itunes giftcard through paypal but can't seem to find a 'code' to use to redeem the card. Could someone help me find where that code would be found? I can see the paypal transaction details. jgm22

    -> iTunes Cards & Codes

  • Please take a look at this. Attempting to make a professional brochure/bound 5-page presentation.

    Please take a look at this template I made for a Statement of Qualifications pamphlet.
    Here is a link to google drive. I made this template from scratch in Photoshop CS6.
    SOQ Page_Blank(no lettering).pdf - Google Drive
    What I am curious about, is that some of the lettering often looks blurry, although the page is 500pixels per inch 8.5x11, 76MB .psd file. What can I do about that?
    Also, I want to make it easy to write and edit the actual content that will go onto the page. Not all of us here have photoshop to edit the lettering. Is there a way I can export this to word so they can edit the content whenever? Are there better options (programs) to help me design this template? I am guessing I am somewhat pushing photoshops limit as to making a bound 5-page presentation. I am stuck and would like this to be easier. All suggestions for both of my questions as well as overall action toward making this would be great.
    Here is an example of a SOQ Pamphlet that I have been using as reference. In my eyes the design is perfect!
    http://www.ch2m.com/corporate/markets/environmental/conferences/setac-2013/assets/CH2M-HIL L-land-conservation-restoratio…
    Any help is great,
    Thanks,
    Adam

    Since photoshop can not do pages, your on the right track by using pdf format. Since it can do pages, but really requires acrobat pro to bind the pages together.
    Your best bet is InDesign then Illustrator would be the next option. Each of these can do multi page documents.
    There is absolutely no reason to use 500px/inch for the resolution anything between 150 and 300 would suffice leaning towards 300ppi.
    If the text is blurred a few things that can cause that, 1) anti-aliasing 2) document was created as a low resolution then upsampled 3) text is rasterized 4) document is rasterized.

  • I fail to get this result ... Take a look at this media..

    Take a look at this media info
    General
    Complete name                            : C:\Users\.......\Downloads\Video\Nightcore --- YouTube.mp4
    Format                                   : MPEG-4
    Format profile                           : Base Media / Version 2
    Codec ID                                 : mp42
    File size                                : 31.1 MiB
    Duration                                 : 3mn 38s
    Overall bit rate mode                    : Variable
    Overall bit rate                         : 1 196 Kbps
    Encoded date                             : UTC 2014-10-19 01:36:36
    Tagged date                              : UTC 2014-10-19 01:36:36
    gsst                                     : 0
    gstd                                     : 218081
    gssd                                     : B4A7DD623MH1413972940055959
    gshh                                     : r3---sn-p5qlsu7l.googlevideo.com
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : [email protected]
    Format settings, CABAC                   : Yes
    Format settings, ReFrames                : 1 frame
    Format settings, GOP                     : M=1, N=60
    Codec ID                                 : avc1
    Codec ID/Info                            : Advanced Video Coding
    Duration                                 : 3mn 38s
    Bit rate                                 : 1 002 Kbps
    Maximum bit rate                         : 2 840 Kbps
    Width                                    : 1 280 pixels
    Height                                   : 720 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 30.000 fps
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.036
    Stream size                              : 26.0 MiB (84%)
    Tagged date                              : UTC 2014-10-19 01:36:38
    Audio
    ID                                       : 2
    Format                                   : AAC
    Format/Info                              : Advanced Audio Codec
    Format profile                           : LC
    Codec ID                                 : 40
    Duration                                 : 3mn 38s
    Bit rate mode                            : Variable
    Bit rate                                 : 192 Kbps
    Maximum bit rate                         : 203 Kbps
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 44.1 KHz
    Compression mode                         : Lossy
    Stream size                              : 4.99 MiB (16%)
    Title                                    : IsoMedia File Produced by Google, 5-11-2011
    Encoded date                             : UTC 2014-10-19 01:36:37
    Tagged date                              : UTC 2014-10-19 01:36:38
    In adobe media encoder cc 2014 there is no GOP option. how can i get this result..???

    Take a look at this media info
    General
    Complete name                            : C:\Users\.......\Downloads\Video\Nightcore --- YouTube.mp4
    Format                                   : MPEG-4
    Format profile                           : Base Media / Version 2
    Codec ID                                 : mp42
    File size                                : 31.1 MiB
    Duration                                 : 3mn 38s
    Overall bit rate mode                    : Variable
    Overall bit rate                         : 1 196 Kbps
    Encoded date                             : UTC 2014-10-19 01:36:36
    Tagged date                              : UTC 2014-10-19 01:36:36
    gsst                                     : 0
    gstd                                     : 218081
    gssd                                     : B4A7DD623MH1413972940055959
    gshh                                     : r3---sn-p5qlsu7l.googlevideo.com
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : [email protected]
    Format settings, CABAC                   : Yes
    Format settings, ReFrames                : 1 frame
    Format settings, GOP                     : M=1, N=60
    Codec ID                                 : avc1
    Codec ID/Info                            : Advanced Video Coding
    Duration                                 : 3mn 38s
    Bit rate                                 : 1 002 Kbps
    Maximum bit rate                         : 2 840 Kbps
    Width                                    : 1 280 pixels
    Height                                   : 720 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 30.000 fps
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.036
    Stream size                              : 26.0 MiB (84%)
    Tagged date                              : UTC 2014-10-19 01:36:38
    Audio
    ID                                       : 2
    Format                                   : AAC
    Format/Info                              : Advanced Audio Codec
    Format profile                           : LC
    Codec ID                                 : 40
    Duration                                 : 3mn 38s
    Bit rate mode                            : Variable
    Bit rate                                 : 192 Kbps
    Maximum bit rate                         : 203 Kbps
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 44.1 KHz
    Compression mode                         : Lossy
    Stream size                              : 4.99 MiB (16%)
    Title                                    : IsoMedia File Produced by Google, 5-11-2011
    Encoded date                             : UTC 2014-10-19 01:36:37
    Tagged date                              : UTC 2014-10-19 01:36:38
    In adobe media encoder cc 2014 there is no GOP option. how can i get this result..???

  • I have a Mac mini Snow Leopard. In Numbers the grid lines are so faint that they are barely visible. Please could someone help me sort out this problem.

    I have a Mac mini Snow Leopard. In Numbers the grid lines are so faint that they are barely visible. Pleease could someone help me sort out this problem?

    The User Manual has this:
    Formatting Table Cell Borders
    You can change the line thickness and color of table cell borders. Or you can hide the border of any cell.
    To format table cell borders:
    1 Select the cell border segments you want to format.
    2 Use the controls in the format bar or in the Table inspector.
    Click to choose a stroke color.
    Click to choose a stroke style.
    Click to choose a line thickness.
    Stroke pop-up menu:  Lets you choose a stroke style. Choose None to hide borders.
    Line thickness:  Controls the thickness of the stroke.
    Color well:  Lets you choose a stroke color.
    When you click the color well in the format bar, a color matrix appears. Select a color by clicking it in the matrix, or click Show Colors to open the Colors window for additional color options.
    When you click the color well in the Table inspector, the Colors window opens.
    User Guide: http://manuals.info.apple.com/en_US/Numbers09_UserGuide.pdf

  • Mods. Please take a look at this topic

    Hi,
    Please take a look at this topic:
    http://discussions.apple.com/thread.jspa?threadID=422678&tstart=0
    It's becoming 'unfriendly'
    Thanks.
    M

    Hi Kady,
    Thanks for putting the inappropriate parts in the 'Trash'
    M

  • Hi, I need someone to help me change the login screen. The computer I have is a macbook, its second hand and probably around 3-4 years old. The previous owner had the login screen has a lego or something. Could someone please help me change this??

    Hi, I need someone to help me change the login screen. The computer I have is a macbook, its second hand and probably around 3-4 years old. The previous owner had the login screen has a lego or something. Could someone please help me change this??

    computerilliterate52 wrote:
    hi all, i hope someone is very computer litterate about java that is i have a dell 2400 pc windows xp 2, well since msn isnt downloading anymore java updates we all have to download a compatible one to our computer i use explorer and i can play www.iwin.com online games, yet when i go on to the msn browswer it wont load the games all i see is it just trying to load and load nothing said and nothing done. what could be wrong it works on ie and not msn browser? i have zone alarm, i have avg spyware tester and spyblaster, but i thought it may of kept me from downloading all this yet it worked on IE please help and i dont have flash player either it wont seem to work any and i mean any help is welcome.i tried to change the browser settings and did all that stuff i am on broadband DSL and they dont seem to know they say that isnt there job its msn's so i asked them and they said no it is quest broadband since i am with them i just get the run around i have IE 6.0 ihave java plug in 1.4.2. o3 yet it says not verified, i have java 1.6.o o1 i have java plugin 1.6.0 01 i have that twice ? dont know why. and java envirinmemet i have the right stuff cuz like i said it plays or works on explorer not msn browserer bar. i see no picture's in center of the page as it tries to load it is a blank page any help thank you i have been trying going on 3 weeks now thanksI agree with the other posters; try Firefox. It sounds like a bit of a mess and what you may need is an onsite PC tech to do some maintenance on your PC.
    Also, learning to properly use punctuation (particularly periods) might not be a bad idea. As it is, your post was very hard to read.
    Good luck!

  • Arrrrrrr! Someone please have a look at this code!

    Ok! I'm pulling my hair out! I've got this code!
    import mx.transitions.Tween;
    import mx.transitions.easing;
    function turnOn() {
    new Tween(camel_shoe_mc, "_alpha", Regular.easeIn, 0, 100,
    1, true);
    camel_bt.onRollOver = turnOn;
    function turnOff() {
    new Tween(camel_shoe_mc, "_alpha", Regular.easeIn, 100, 0,
    1, true);
    camel_bt.onRollOut = turnOff;
    function turnOn() {
    new Tween(fudge_shoe_mc, "_alpha", Regular.easeIn, 0, 100,
    1, true);
    fudge_bt.onRollOver = turnOn;
    function turnOff() {
    new Tween(fudge_shoe_mc, "_alpha", Regular.easeIn, 100, 0,
    1, true);
    fudge_bt.onRollOut = turnOff;
    Now this is what is happning! you rollover the camel_bt the
    camel_shoe_mc show's up, great! Then you rollover the fudge_bt and
    the camel_shoe_mc come's up!! Is there a way of having this code in
    the same layer? Or do I have to make a new layer for each. Or is
    the code written wrong? I do have about 50 "_mc" so I would like to
    have the code in one place as well as the images. I hope someone
    out there can help! If you need to butcher the code by all means
    do! That's for having a look!!!!

    the code is great! Even if it should be "i++". The whoe thing
    work's like a charm! It's just what I wanted! Christmass comes
    again! Hay, seeing as I have you hear. Do you have any idea what
    code I should add to the _bt's so when you click on them it fills
    in a form at the bottom of the page? i.e rollOver the button it
    inform's you waht the color is and you click the button and it
    fill's out a combo box form at the bottom.

Maybe you are looking for

  • TS1702 When I go to update an app, it says that it will not work, click retry or cancel. So I click retry and even after I do that, it won't update

    iPad mini

  • ISE ceritificate

    Hello Guys i am implementing Cisco ISE 1.3 and Having hard time with understanding ISE certificate things . - First i have downloaded cert from AD CA imported into ISE - From ISE generated self signed certificate & imported in to AD - From AD cert is

  • Logging Best Practices in J2EE

    Hi, I've been struggling with Apache Commons Logging and Log4J Class Loading problems between module deployments in the Sun App Server. I've also had the same problems with other App servers. What is the best practice for Logging in J2EE. i.e. I thin

  • Select the Most Recent Record

    I have a 2-page report that is grouped by employee, where the first page is a standard letter except for address, and the second page is a reproduction of a scanned form that the employee had returned.  The employee may have returned several versions

  • Dynamic Validation Entities

    I have an FDM Location that a lot of companies will be loading through. Rather than setting up seperate locations / validation entities for each company, I was hoping to use an Event Script which changes the Validation Entity as the data is being pro