Custom Compiler Language

I create my own texteditor,the plan is i want to trap the error message that generate from the java compiler to my language, so i can display the error message with my own words (not an exception errors)..
What should i do, to solve this?
Thanks...

Learn English first and then try to word your question in gramatically and syntactically correct language.Maybe then someone will understand what you're trying to achieve.
I think u dont have skills to solve this? i think u're not an good answer on every forum you joined, am i right?
My question is, When u're compiling your program, and there's error on your code, java compiler generates an error message, is that anyway or how to change this message or how to trap this message, so i can change into my own words? understood....
if u dont, i dont know how to speak with the alien language....
thanks to everyone who tried answer this...
Bonjour....

Similar Messages

  • Question about the custom panel language

    I have a question about the custom panel language...
    The document you provide seems to lack details on some features. Namely the icon and picture widgets. I see from looking at the examples and other vendor's web pages that these features exist, but I don't find any detailed descriptions of them in the documentation. Is there a more complete document describing these and other features...
    http://www.adobe.com/products/xmp/custompanel.html
    Alternatively, can someone fill me in on the syntax and options for at least the icon and picture widget. For instance, how do you load external icons or pictures...
    Tom

    Gunar,
    It could be interesting to have something like
    icon(url: 'http://www.adobe.com/Images/logo.gif', width: 20, height: 20);
    or better
    picture(url: 'http://www.adobe.com/Images/logo.gif', width: 20, height: 20);
    for the pictures and
    include(url: 'http://www.adobe.com/xml/custompanel/camera1.txt');
    for include the cusmtom panel's dynamic portions
    Juan Pablo

  • Compiled language with similar feel to php?

    I have written several utilities for my album program in php,
    but this means
    that if I give them to anyone else they have to install php
    before they can use
    them on their own computers.
    I have never used C++, but the philosophy behind php seems to
    be very similar to
    that behind it (as I remember it from one or two lectures
    about 40 years ago),
    so I thought Visual C++ might be the way to go. However the
    discussions on
    several of the C++ newsgroups I have looked at recently seem
    to be coming from
    another planet.
    Can anybody suggest which language would be most suitable for
    this purpose? The
    last high-level language I was recently proficient in was
    Fortran.
    Clancy

    Clancy wrote:
    > I have written several utilities for my album program in
    php, but this means
    > that if I give them to anyone else they have to install
    php before they can use
    > them on their own computers.
    The same would be true for most compiled languages. If you
    used Java,
    for instance, they would need to install the JVM.
    > Can anybody suggest which language would be most
    suitable for this purpose? The
    > last high-level language I was recently proficient in
    was Fortran.
    If you want to display images, you might want to investigate
    ActionScript 3.0, the language used by Flash, Flex, and AIR
    (Adobe
    Integrated Runtime):
    http://labs.adobe.com/technologies/air/
    ActionScript 3.0 is an object-oriented language, which is
    compiled into
    bytecode, and runs in the Flash Player or AIR. Of course, it
    means that
    your friends would need to install the Flash Player or AIR,
    but both are
    easy to install (basically, click and you're done).
    Learning ActionScript 3.0 to display a photo gallery might
    seem like
    overkill, but I get the impression that you're more
    interested in
    building your own application, rather than using an
    off-the-shelf
    product. I have been using ActionScript 1.0 and 2.0 for
    several years
    (even written books about it), but ActionScript 3.0 is
    completely
    different. It contains a huge number of built-in classes, so
    can feel
    overwhelming to start with. However, the syntax is very easy,
    as
    everything is written in plain English, and it uses the same
    looping and
    conditional structures as PHP.
    The best way to work with ActionScript is with Flex Builder
    (a new
    version, Flex Builder 3, is due out later this year, but you
    can try it
    out as a 30-day free trial to see if it appeals to you). The
    best way to
    learn ActionScript 3.0 is with "Essential ActionScript 3.0"
    by Colin
    Moock. It has just been published by O'Reilly. I'm reading
    it, and it's
    excellent.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Is java a compiled language - part 2

    yamm_v6.6_6 said
    Again, I think you are confusing the compilation process and the interpretation process with the meaning of "compiled language" and "interpreted language", mr. jschell. Compilation process and interpretation process have definitions very well established in the Computer Science, as you said, and I agree with you. There are no controversies in those definitions. On the other hand, the meaning of "compiled language" and "interpreted language" might vary, because in this case there are controversiesNo.
    Compilers are one of the most well studied and well defined aspects of computer science more so than any other part of computer science.
    And the Dragon book is now, and has been for at least 20 years, the recognized authoratative source of that part of computer science.
    And there is nothing in there that supports your conclusion nor nothing that supports your term definitions.
    A language in of itself is never compiled nor interpreted. That book specifically defines the process under which a language must be processed to become either compiled and/or interpreted.
    If you wish to disagree with that then state something from that book or first demonstrate that that book is no longer the authorative source.
    Finally note that in terms of computer science none of the java documents (specifications or otherwise) are suitable authoratative sources. The java specifications although adequate are far from precise in the adherence to definitions in computer science, or even in the definition of java itself.

    Wow! I was just googling, and then look at what I found! This thread! Thanks, mr jschell, for your replies. I really appreciate them.
    jschell wrote:
    Finally note that in terms of computer science none of the java documents (specifications or otherwise) are suitable authoratative sources. The java specifications although adequate are far from precise in the adherence to definitions in computer science, or even in the definition of java itself.Well, do you want authoritative sources, right? How about this:
    [_CLDC HotSpot Implementation Architecture Guide Chapter 10_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc[_CLDC HotSpot Implementation Architecture Guide Chapter 10_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc/architecture/html/VFP.html]
    +The 1.1.3 release of CLDC HotSpot Implementation included limited VFP support. This feature was supported only when running in interpreted mode. In this release, full vector floating point support is provided when the virtual machine is running in compiled mode.+
    [_Java Virtual Machines_|http://java.sun.com/j2se/1.4.2/docs/guide/vm/index.html]
    +Adaptive compiler - Applications are launched using a standard interpreter, but the code is then analyzed as it runs to detect performance bottlenecks, or "hot spots". The Java HotSpot VMs compile those performance-critical portions of the code for a boost in performance, while avoiding unnecessary compilation of seldom-used code (most of the program). The Java HotSpot VMs also usesthe adaptive compiler to decide, on the fly, how best to optimize compiled code with techniques such as in-lining. The runtime analysis performed by the compiler allows it to eliminate guesswork in determining which optimizations will yield the largest performance benefit.+
    [_CLDC HotSpot Implementation Architecture Guide Chapter 4_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc/architecture/html/DynamicCompiler.html]
    +Two different compilers are contained in the CLDC HotSpot Implementation virtual machine: an adaptive, just-in-time (JIT) compiler and an ahead-of-time compiler. The JIT compiler is an adaptive compiler, because it uses data gathered at runtime to decide which methods to compile. Only the methods that execute most frequently are compiled. The other methods are interpreted by the virtual machine.+
    [_Java Tuning White Paper_|http://java.sun.com/performance/reference/whitepapers/tuning.html]
    +One of the reasons that it's challenging to measure Java performance is that it changes over time. At startup, the JVM typically spends some time "warming up". Depending on the JVM implementation, it may spend some time in interpreted mode while it is profiled to find the 'hot' methods. When a method gets sufficiently hot, it may be compiled and optimized into native code.+
    [_Frequently Asked Questions About the Java HotSpot VM_|http://java.sun.com/docs/hotspot/HotSpotFAQ.html]
    +Remember how HotSpot works. It starts by running your program with an interpreter. When it discovers that some method is "hot" -- that is, executed a lot, either because it is called a lot or because it contains loops that loop a lot -- it sends that method off to be compiled. After that one of two things will happen, either the next time the method is called the compiled version will be invoked (instead of the interpreted version) or the currently long running loop will be replaced, while still running, with the compiled method. The latter is known as "on stack replacement", or OSR.+
    [_Java Technology Fundamentals Newsletter Index - Making Sense of the Java Classes & Tools: Collection Interfaces, What's New in the Java SE 6 Platform Beta 2, and More_|http://java.sun.com/mailers/newsletters/fundamentals/2006/July06.html]
    +Java: A simple, object-oriented, network-savvy, interpreted, robust, secure, architecture neutral, portable, high- performance, multithreaded, dynamic language.+

  • How can i create a custom Audio Language name for video?

    I have create a dvd with menu and vidoe (Audio 1 is sing a song , and Audio 2 is only music)
    but i cant define" a audio name for andio that is mute,
    my question is How can i create a custom Audio Language name for video?"
    Anyone can help , thank you so much for reading !!

    Thanks Stan Jones,
    Anyone can tell me a soluation and some better show up method to present that the user is changing a audio track in correct name ...
    Or Encore can do a pop-up message to show the user's selection or not ?_? (i don't know)

  • Text in after  logon screen when logging on with"customer reserve" language

    Hello
    I wander how could I set text in after  logon screen when logging on with"customer reserve" language. Namely instead:
    SAP user name             XURUZRJ
    Last system logon         27.03.2014
                     at       11:45:17
    Copyright(c) SAP AG 2002.
    All rights reserved.
    License w/o expiration
    This software product, marketed by SAP AG
    or its distributors, includes proprietary
    software components of Oracle Corporation.
    Copyright (c) Oracle Corporation 1979, 2004.
    All rights reserved.
    Oracle is a registered trademark of Oracle
    Corporation and/or its affiliates. Various
    product names referenced herein may be
    trademarks of Oracle Corporation
    I get:
    SAP user name             XURUZRJ
    Last system logon         27.03.2014
                     at       12:23:42
    Thank you a lot in advance
    Jan

    Hi Jan,
    Refer SAP note
    1149795 Translating English Customizing entries into German
    Process specified can be used to change the text from local language to English.
    Hope this helps.
    Regards,
    Deepak Kori

  • ISE Custom portal language

    Hello all,
    is there a way to have a custom portal ( file uploaded )switching depending on the language of the browser used?
    I think the only way to have multiple language is to use the default portal.
    Any comments?

    Thx vattullu,
    Scuse me, am french so am probably not clear or make any sense :)
    i want 2 portal, one in french and the other one in English.... With french logo/banner only on the french one, and english logo/banner on  the english one. Same goes for the Welcome, the instructions etc.
    Lets say i have a logo saying: Welcome to Eric World and my other logo is: Bienvenu dans le monde d'eric and i dont want both on the same portal...
    The template selection is only available on the Default
    the only way i can think of doing this would be with my authorisation profile as in:
    if OS=french then portal_french else if OS=english then portal_english but really not sure i can do that kind of condition, with dictionnay attribute etc
    in resume, what i wanna do is the same thing as swiching language template with the browser local but NOT template... switch portal!

  • Is java interpreted or a compiled language.

    Im confused all languages aare compiled arent they?
    C++ is compiled into binary, then its ready to execute.
    Java compiled into bytecode and then interpreted bt the JVM, then passed into binary and run?
    Is this right anyone got a definitive answer?
    Cheers

    Im confused all languages aare compiled arent they?Languages are not classified into compiled and interpreted. Implementations of languages are either compilers or interpreters.
    Most implementations of languages are compilers these days. As far as I know there are no Java interpreters. Java is always compiled into bytecode or native code in all implementations I've seen.
    The bytecode can be interpreted as it usually was in the early days of Java, or compiled at run time, or pre-compiled, or can be both interpreted and compiled at run time as HotSpot does.

  • Maintaining a custom compiled version of glibc in multiple machines

    Hi,
    I am trying to maintain a custom version of glibc due to the minimum kernel version bump. I have seen the sticky topic in the forum about Updating packages compiled via ABS.
    The steps which seem clear to me -
    run
    abs core/glibc
    Copy
    /var/abs/core/glibc
    to another path and do a couple of changes to PKGBUILD
    run from the custom path
    makepkg -s
    So, creating a custom repo and using that as the top most repo and reinstalling glibc is the way to go when multiple machines are involved ?
    When the package is built copy it to another path and run
    repo-add
    Put the custom repo at the top repo in
    /etc/pacman.conf
    refresh pacman
    pacman -Sy
    reinstall glibc using
    pacman -S glibc
    Is this the way to go ?
    cheers !
    Last edited by kmganesh (2011-02-16 06:52:01)

    kmganesh wrote:So, creating a custom repo and using that as the top most repo and reinstalling glibc is the way to go when multiple machines are involved ?
    I would just, after running the abs command and copying the glibc PKGBUILD into a folder in your home directory, run
    makepkg -s
    in the folder with the PKGBUILD to generate the package and then copy the package onto a USB key to distribute to other machines.
    Installing with
    pacman -U /path/to/package
    Unless you have many machines that you want to install the package on, it is much simpler than creating a repo.
    Last edited by andrewthomas (2011-02-15 02:40:52)

  • Custom Compile time parameter

    hi
    i try to add the svn version to my flex gui. so i have to add this information during compiling.
    question 1) can i a custom parameter during compile time. if yes how can i access this value in my flex app?
    question 2) i could use the compile parameter "metadata.title". how can i access this value inside my flex app?
    thanks for your help.
    cheers joe

    http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_21.html

  • Using custom compiled kernel from Ubuntu

    I know I could always use my config file and recompile just for Arch, but I'm wondering what the downsides might be to using my bzImage file and doing a mkinitcpio to make the initrd file? They're both 64bit, all set up to use ext4 and ntfs. I am using kernel 3.2 sources with ubuntu's patches which add their debian/debian.master stuff, but I strip out everything I don't need for my system, set to core2 for cpu, turn off unneeded debugging options, and most importantly put in a DSDT.hex file I have from when I had to patch the DSDTAll of the drivers that my system uses are compiled in. I use Ubuntu 75% of the time, Arch 20% and Windows 7 5%. (I do use a seperate Arch in VirtualBox daily when in Ubuntu so please don't be mad at me for not being a full time Arch user yet!) . Figured I'd ask and see how friendly these forums are. I might just try later to see but I don't want to be in the middle of something important a week from now and then it's like oh f*ck.

    Actually that part I did know, because I rarely use bluetooth so those drivers are modules and not compiled in. I may just wind up recompiling whenever. I'm currently chrooted into arch still working on something else.
    EDIT: It works, but it makes my arch boot time worse and it freaked out at first 'cuz I sometimes use virtualbox to boot the install on the HD install itself with a raw vmdk pointing that partition which uses a virtualbox video driver instead of nvidia's binary . I'll just have to compile my own kernel on the arch side.
    Last edited by xyzzyman (2011-12-12 05:01:02)

  • Customer specific language for SRM screens

    Hello All,
    I want to know how SRM will support non-standard language.
    Our client wants all buttons and links in THAI for bidding templates.
    BBP_BID_INV
    got one link from Masa's post :
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cc/a79734d57211d3963700a0c94260a5/content.htm
    But can anyone put more light in detail how to fulfill this requirement?
    BR
    Dinesh

    In principle, any Unicode language can be supported with SAP applications.
    I think the challenge & time taking task could be 'Translation' itself.
    One more link that can throw somemore light..
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/74/13453cc7f35d0ee10000000a11405a/frameset.htm
    Few months back, had started thinking about this for enabling 'Hindi'. THought we did not do anything, one thing that helped me was -- readings on Unicode support in SAP.
    Best regards
    Ramki

  • Output in Customer Language for Service Dispatch Note Smart form

    We have upgraded from ECC 5.0 to ECC 6.0.
    After the upgrade we are facing an issue in some of our Service related smart forms.
    The version of the driver program is same in both the systems and the smart form is also same.
    The customer's language is maintained in Customer Master data.
    In the un-upgraded system, the forms were printed in the Customer language according to what is maintained in the customer master data.
    But after the upgrade, in the new system, the form is being printed in English as opposed to the Customer language in the older system.
    As I have already mentioned above, in both the systems, the driver program, smart form and Customer Language in the customer master data are similar.
    Kindly suggest me the solution if anyone has faced a similar problem.

    Hi, Actually I have checked in debugging and have come to know that during the upgrade, when I have downloaded the form from ECC 5.0 and uploaded it to ECC6.0, the Language option in the general attributes tab of the text modules is blank and hence the form is displayed in English only.
    Is there any way that I can get the smartform uploaded as it is in the earlier system?

  • We would like to use cyrilic language characters in ECC system with custome

    We would like to use cyrilic language characters in ECC system with "customer reserve" language (Z1).
    We have positive experience on  one system for certain business partner in Macedonia (there is no Macedonian language to install as SAP standard) by using "customer reserve" language (Z1).
    Now we are about to introduce other system with same approach. The trouble is that after entering Macedonian language on an cost center with language Z1 on first language  and transfering it via idoc we get hashes("#") instead of characters on second language
    What could be the reason? I suplemented with english (as on the first system where everything is ok)  the "Customer reserve"(Z1)  language normaly(with default settings).
    On first system this was not done by me.
    Should supplementation be done specificly?.(how to find settings for supplemention on first system?)
    Please give me a hint

    Hi,
    To check supplement language go to T-code, SMLT ->Language ->Special actions->Supplementaion
    you can get more information from below SDN thread.
    Cyrilic char not coming properly
    Below SAP help document gives you how to find supplement language & installation of languaes.
    http://help.sap.com/saphelp_nw70/helpdata/en/a3/30ad5296b511d384bb0060975b04f3/content.htm
    Regards
    Nagaraju

  • Printing invoices based on Customer Master's language

    Hi there,
    Is there a way to set to print in a Customer specific language?
    For instance, I have a invoice which I want to print for a German customer, hence the output should be german. This is not based on the user logon as a English logon may print an invoice for a German custoner.
    Many thanks!

    Hi Joshua
    Maybe you can try this way:
    1. Execute FM: <b>SUSR_USER_ADDRESS_READ</b> with USER_NAME = SY-UNAME.
    2. Extract language from field SPRAS of structure: <b>USER_USR03</b>
    3. Use this accordingly...
    Hope this helps...
    Kind Regards
    Eswar

Maybe you are looking for