[Eclipse e Enterprise Architect 7.1]- how use eaapi.jar library?

Hi everybody!
I'm using Eclipse and Enterprise Architect 7.1 library (eaapi.jar) for a university project. I must use the api in order to create a new class diagram, add a new class, attributes and so on.
All samples that I find are in Visual Basic 6.0...nothing java samples!!
Please help me! I would need at least a full documentation about the API of this library!
Thanks very much!
bye
Edited by: fanny983 on Jul 15, 2008 1:53 AM

Did you try asking at Eclipse.org for Eclipse libraries support?

Similar Messages

  • How use a .jar taht is mount in forte

    i mount the .jar taht i want to use into forte explorer, but i cant import the file taht is in?
    maybe is stupid, but i dont know
    sorry for my english
    thx

    sorry i finish to find it in the forum (maybe its very long to find taht we want)
    im leaving this topic

  • How to add jar library in java?

    Hi,
    I am Anil,
    Could it possible to add library in Java library?
    like java.io.DataInputStream is library in Java (JDK), so I want to add my own library in Java JDK.
    I have created a package net.jini.j2space and one interface in it J2Space, I have created jar of this.
    and now I want to this jar to Java library so I can import it in my projects.
    Please help me.
    Thanks in advance.

    Hi, I am Zander Smith and I want to share my story with you. I am a sport star in my community, I am known for my football skills. I had a very healthy physique because I used to do almost 4 hours of daily workout. One day it was raining heavily and I was busy playing football with a nearly club who challenged our team. While playing I hit my leg on the goal post and broke my leg. I came out of hospital after three months. Since I was on complete bed rest I gained 35 pound. I had lost my athletic shape. I was very upset with my bulky body and I wanted to have my old shape back at any cost.
    I started to work out. As I was restricted by doctor to do rigorous work out, it did not help me the way I wanted. After a month one of my friends suggested me [Acai berry|http://ezinearticles.com/?Acai-Berry---How-I-Lost-30-Pounds-in-Under-30-Days-Using-The-Acai-Berry&id=1998407] . I thought that my workouts are enough for losing my weight, but I was impatient. I took all the information about this product and I found it useful. I purchased Acai Berry Supplement and used it. Now it is like a dream come true, I have come back to my earlier shape. Thanks to Acai Berry now I am living my life as I lived before. [Acai berry|http://www.goarticles.com/cgi-bin/showa.cgi?C=1829429]

  • Applet using local jar library, is it possible?

    Hi Experts,
    i'm asking myself if it could be possible to store a library (a big one) into a local computer... which could be accessible from an applet (jar). To do a long story short, i need a crystal report lib to be used with an applet, but the library is to big to be compiled with the applet. If you have suggestions, tutorials or examples... they could be very appreciate.
    Thanks
    pm

    I don't understand why you say "...but the library is to big to be compiled with the applet."
    No matter what, if it's your intention to use Crystal Reports in support of an applet that a client acquires over the net from a server, then the needed Crystal Report stuff will have to be available to the client - and including that in a jar with an applet, that's downloaded from the server, is a common solution. You may get into problems with the time it takes to download; you may want to look into lazy downloading, or use the new JNLP-based solutions now available in Java 6u10.
    Take a look at this applet and Web Start (JNLP) tutorial
    http://java.sun.com/docs/books/tutorial/deployment/index.html
    and at the Web Start docs here
    http://java.sun.com/javase/6/docs/technotes/guides/javaws/index.html
    and the Java Plug-in docs here
    http://java.sun.com/javase/6/docs/technotes/guides/plugin/index.html

  • How to create outside Logging file in osb 11g using log4j.jar?

    Hi all,
    Currently, i am using osb 11g to develop a system. In the system we need to create a log file using log4j.jar library. This sub-program is working in the osb 10g base but fail to work in the osb 11g base. Can anyone give me some advice about this matter? Have anyone created one like this in 11g? Is it successful?

    Sorry path is missing for the above request.
    path="\\192.168.0.14\c$\LOG\d9\May_08_2008_log.txt ";
    please help.
    Saravanan.K

  • Problem with using external jar file

    Hi
    I was using mail.jar library for swing application to send and receive emails. It just works perfect when I run with netbeans. But when I run the executable jar file at dist folder it runs but mail related functions doesn't work.What should I do now to make it work with mail features outside netbeans.
    thanks
    vinay
    Edited by: 899657 on Dec 24, 2011 5:07 AM

    899657 wrote:
    No. Because I am running the jar file which is created by netbeansNetbeans creates a 'dist' directory in which it puts your jar and a "dist/lib' directory in which it puts the dependent jars that are added to the project using 'project right mouse click'->Properties->Libraries. I would expect to see this 'dist/lib' directory contain mail.jar and activation.jar and any other jars that your jar needs. Within your program jar's manifest I would expect to see the Class-Path attribute have relative reference these jars ( lib/mail.jar lib/activation.jar ) and for the Main-Class attribute define your main class.
    Given this setup then you should be able to just type -
    java -jar yourjar.jarto run your program.

  • How to add TIMESTAMP data type in  Enterprise Architect...?

    Hi all
    There is no data type of timestamp in Enterprise Architech. There is only
    DATE type. I have ERD prepared from Enterprise Architech. How to modify
    DATE type to TIMESTAMP type.
    How to add TIMESTAMP data type in Enterprise Architect or in ERD ?
    Thanks in advance,
    Pal

    Have you asked this question of the vendor of Enterprise Architect? They may have a later version that supports the various TIMESTAMP data types. If your ERD tool doesn't support a data type, other than talking to the vendor or working around the problem (i.e. generate DDL to a text file and edit it before applying it to the database), you're probably out of luck.
    Justin

  • How use eclipse create Flex API ?

    How use eclipse create Flex API ?

    I'm pretty sure this isn't anything to do with Acrobat Forms. Perhaps there is a forum for Flex?

  • How to run a java program using additional jar files

    Hi everyone in the forum,
    i ve created an app using the hFreeChart in eclipse, so i added them as external jar files and tested the program.
    now my problem is that the program should run using a terminal in win and i do not know how can i do to make the command line or the system to find them, i added to the path but i read somtehing about classpath, but i have no idea. if anyone can help?
    thanks in advanced

    Actually, the best way to prepare a program for regular running is to make it an executable jar file, which means adding a manifest file which contains (at least) a Main-class: and a Class-Path: line. Referenced class libraries typically sit in a lib directory next to the java file. Then you can run it using java -jar myprog.jar.
    Failing that create a batch file or link that supplied java with command line parameters including a -classpath=
    Using the class path environment results in too much contention between competing values of it.

  • C_SOA200_70 : ASSOCIATE ENTERPRISE ARCHITECT

    Hi,
    I want to appear certification exam C_SOA200_70 : ASSOCIATE ENTERPRISE ARCHITECT on TechEd, bangalore.
    Where can I find reading material for this other than SDN.
    Do SAP has any document for E-SOA like help.sap.com?
    Thanks,
    Ashok

    Hi,
    Use the following Link.
    http://www.sap.com/services/education/certification/index.epx
    Look for Find Certifications Tool
    I too am Interested to write this Exam. Share if u have got anything
    Regards,
    Nithin

  • Accessing resource files inside Jar using Fat Jar Eclipse plugin

    Hi,
    I want to develop single JAR file that uses a set of other JAR libraries. I am using Fat Jar Eclipse plugin. It works fine. However, I have problem to access resources files (i.e. rdf file) using relative path from my classes. Is there any idea how can I pack, set classpath and use relative path in order to make it works.
    Thanks
    Zoran

    I have solved this problem. The problem was in a way how I have trying to access it. It should be like:
    URL fileURL = this.getClass().getResource("resource/myFile.rdf");
    Zoran

  • Off topic: Substitutes for "Enterprise Architect" on Linux?

    I really like Enterprise Architect, but don't really relish installing Crossover Office and the 1001 Abominations that are required to support EA under Linux - yet I'm mostly developing in a Linux environment these days.
    Can anyone recommend a Linux-compatible product - free or commercial - that's in the same league as EA, particularly for building ER diagrams?
    I know this isn't technically a Java question, but perhaps there's a Java based product that fits the bill.

    dcminter wrote:
    I can always get by with a notepad and a fountain pen; I tended to use EA for its reverse engineering capabilities; I worked on one project where the project managers insisted we document the whole system by using Together to reverse engineer class diagrams and sequence diagrams from the Java code using Together. The class diagrams were not bad bu the sequence diagrams had so much irrelevant detail that they were unusable.
    the ER diagrams made good aides memoires, made it easy to spot silly mistakes in the DB design, and are great for communicating about the DB design, but I rarely use them up front.I don't do much complex BD design - I rely on people who know what they are doing.
    >
    I think Canonical's the best thing that's happened to Linux (even if it does keep reverting my Java config to GCJ (spit) for its own mysterious reasons). I've used various flavours of Linux for years, but gave it up on the desktop because it was too painful to maintain. Finally it's become easier to manage a Linux desktop than a Microsoft one!
    It'll be really interesting to see if people start porting these significant developer applications to Linux, or if decent dedicated replacements will spring up to replace them - or if this is just a blip before Linux gets trampled by its commercial rivals.I would like to change my Wife's computer from Windows XP to Ubuntu but I don't think it's quite there yet. Very close but still a little way to go.
    Edited by: sabre150 on Jan 5, 2008 4:00 PM

  • How useful is clean my mac

    How useful and secure is"clean my Mac"?

    How to maintain a Mac
    1. Make redundant backups, keeping at least one off site at all times. One backup is not enough. Don’t back up your backups; make them independent of each other. Don’t rely completely on any single backup method, such as Time Machine. If you get an indication that a backup has failed, don't ignore it.
    2. Keep your software up to date. In the Software Update preference pane, you can configure automatic notifications of updates to OS X and other Mac App Store products. Some third-party applications from other sources have a similar feature, if you don’t mind letting them phone home. Otherwise you have to check yourself on a regular basis. This is especially important for complex software that modifies the operating system, such as device drivers. Before installing any Apple update, you must check that all such modifications that you use are compatible.
    3. Don't install crapware, such as “themes,” "haxies," “add-ons,” “toolbars,” “enhancers," “optimizers,” “accelerators,” “extenders,” “cleaners,” "doctors," "tune-ups," “defragmenters,” “firewalls,” "barriers," “guardians,” “defenders,” “protectors,” most “plugins,” commercial "virus scanners,” "disk tools," or "utilities." With very few exceptions, this stuff is useless, or worse than useless.
    The more actively promoted the product, the more likely it is to be garbage. The most extreme example is the “MacKeeper” scam.
    As a rule, the only software you should install is that which directly enables you to do the things you use a computer for — such as creating, communicating, and playing — and does not modify the way other software works. Use your computer; don't fuss with it.
    Never install any third-party software unless you know how to uninstall it. Otherwise you may create problems that are very hard to solve.
    The free anti-malware application ClamXav is not crap, and although it’s not routinely needed, it may be useful in some environments, such as a mixed Mac-Windows enterprise network.
    4. Beware of trojans. A trojan is malicious software (“malware”) that the user is duped into installing voluntarily. Such attacks were rare on the Mac platform until sometime in 2011, but are now increasingly common, and increasingly dangerous.
    There is some built-in protection against downloading malware, but you can’t rely on it — the attackers are always at least one day ahead of the defense. You can’t rely on third-party protection either. What you can rely on is common-sense awareness — not paranoia, which only makes you more vulnerable.
    Never install software from an untrustworthy or unknown source. If in doubt, do some research. Any website that prompts you to install a “codec” or “plugin” that comes from the same site, or an unknown site, is untrustworthy. Software with a corporate brand, such as Adobe Flash Player, must be acquired directly from the developer. No intermediary is acceptable, and don’t trust links unless you know how to parse them. Any file that is automatically downloaded from a web page without your having requested it should go straight into the Trash. A website that claims you have a “virus,” or that anything else is wrong with your computer, is rogue.
    In OS X 10.7.5 or later, downloaded applications and Installer packages that have not been digitally signed by a developer registered with Apple are blocked from loading by default. The block can be overridden, but think carefully before you do so.
    Because of recurring security issues in Java, it’s best to disable it in your web browsers, if it’s installed. Few websites have Java content nowadays, so you won’t be missing much. This action is mandatory if you’re running any version of OS X older than 10.6.8 with the latest Java update. Note: Java has nothing to do with JavaScript, despite the similar names. Don't install Java unless you're sure you need it. Most users don't.
    5. Don't fill up your boot volume. A common mistake is adding more and more large files to your home folder until you start to get warnings that you're out of space, which may be followed in short order by a boot failure. This is more prone to happen on the newer Macs that come with an internal SSD instead of the traditional hard drive. The drive can be very nearly full before you become aware of the problem. While it's not true that you should or must keep any particular percentage of space free, you should monitor your storage consumption and make sure you're not in immediate danger of using it up. According to Apple documentation, you need at least 9 GB of free space on the startup volume for normal operation.
    If storage space is running low, use a tool such as the free application OmniDiskSweeper to explore your volume and find out what's taking up the most space. Move rarely-used large files to secondary storage.
    6. Relax, don’t do it. Besides the above, no routine maintenance is necessary or beneficial for the vast majority of users; specifically not “cleaning caches,” “zapping the PRAM,” "resetting the SMC," “rebuilding the directory,” "defragmenting the drive," “running periodic scripts,” “dumping logs,” "deleting temp files," “scanning for viruses,” "purging memory," "checking for bad blocks," or “repairing permissions.” Such measures are either completely pointless or are useful only for solving problems, not for prevention.
    The very height of futility is running an expensive third-party application called “Disk Warrior” when nothing is wrong, or even when something is wrong and you have backups, which you must have. Disk Warrior is a data-salvage tool, not a maintenance tool, and you will never need it if your backups are adequate. Don’t waste money on it or anything like it.

  • Enterprise Architect Certification

    We want to send some peoplefrom our organisation for Enterprise Architect course and CErtification. We do not want to send for vendor specific certification.We are lookign for generic certification which is recognized by everyone.
    Can you suggest some good generic Enterprise ARchitect certification.
    Thanks in advance,
    Abdul Raheem S

    Hi,
    Go for Togaf 9 certification, this comes into 2 level.
    Level -1 : foundation.
    Level -2:  Practioner.
    either you can step by step or in single go.
    5 days course will cost you approx. 2000 Euro (check with training provider as cost may vary). Level-1 can be done by self study and foundation guide is also available and will cost you around 23 Euro.
    Togaf is very generic and focus on procedure rather than deliverables whereas Zachman focussed on deliverables, so most of the organization use comibation of both to design their own EA practice/framework.
    Since SAP EAF is based on Togaf so it is worth if you are into SAP services as well.
    Regards,
    gourav

  • Certified Associate SAP Enterprise Architect

    Could anyone certified on 'Certified Associate SAP Enterprise Architect' give some guidelines to prepare for the exam?  Would be great if you can share your experience on writing this exam.

    I was able to clear this exam few months back . I have seen many people asking about this certification. There is so much to share in terms of experience, but here i would like to highlight few things:
    First of all read through this exam and preparation courses here : [http://www12.sap.com/services/education/certification/certificationrole.epx?context=%5b%5bROLE_C_SOA_CER%5d%5d%7c]
    This is neither an typical technical exam nor an functional domain specifc course. This mainly is about big SOA engagements in an organisation. Following are major areas of exam:
    Concepts:
    SOA history, the SOA overview, journey of SOA so far within SAP, how SAP has adopted SOA model in its practices and many more conceptual points in and around SOA.
    SOA Engagement:
    In SOA 200 course you will find different phases illustrating how should SOA transformation happen in any company based on several conditions. This also includes what is the best practice to convert an traditional running software enviornment to SOA oriented enviornment.
    SOA Governance :
    How to get engaged in effective SOA cycle and what rules/templates to follow.
    Apart from concepts there are courses for real time studies on Provisioning and Consumption sides of SAP SOA.
    Related to this you also need knowledge of SAP netweaver tools and how do these tools help in provisioning and consumption and in overall SOA practices.
    In general, this is first level course for a person who wants to be an Enterprise Archictect. But I feel there would be a long way to go after this for anyone to become an SOA EA. This course forms a basis of understanding about the buzz word SOA and related scnearios. But a practical engagement is then necessary to move in the direction of an EA.
    I think we are(should be) not allowed to come up with the question paper, but I can give you some hints on the pattern asked in this certification:
    The questions are arranged mostly as per the chapters of different courses - SOA100, 200, 110 and Netweaver.
    If you read whole SOA 200 it is easier to clear the certification exam because SOA 200 is the important part of whole learning. The major focus is on Introduction chapters of SOA and several definitions besides different phases (view/matrices/templates).
    Netweaver topics are huge and it is not possible for anyone to cover all the stacks of Netweaver like PI, MDM, BI, Composition via CAF/CE..
    which means that there can be some technical questions which will not be possible to answer unless you have worked on that area throughly. So its better to go with best knowledge on these topics before appearing in the exam or just leave on your luck otherwise ).
    SOA100 is very interesting in reading and for understanding as well. The questions are very easy also to answer in this area.
    I would say this course should be more considered as interesting learning and its not safe to leave any topic or chapter among these courses for exam as all the courses contribute to questions in the exam.
    Hope it helps .

Maybe you are looking for

  • Editable ALV with New Row and Save

    Hi Experts,   I created an ALV report which is editable, add a New Row with SAVE options. Problem is: when i try to save the changes using SAVE button in the application tool bar for the coloumn in the specific row, the event is not triggered and the

  • Having trouble installing Adobe Flash while running Yosemite...

    I installed Yosemite over a week ago and ever since I've been unable to get Flash to work properly. I realized an update needed to be installed (even though I have the automatic updates checked for Adobe Flash), but I'm having a hard time getting the

  • Ghost Books on iBooks

    I purchased some books from itunes on my pc. When it came to syncing my iphone with itunes it will display a front cover of these books (with the download progress bar on empty), but i can neither redeem the books, nor delete them. If i search for th

  • Opening p65 files in Indesign CS 3.0.1

    I am having trouble converting or opening an old pagemaker 6.5 file into an Indesign file. Error message says I maybe missing an add on. Thanks Dan

  • Itunes and quicktime dont launch

    Hey there. And here's my problem: itunes does not launch anymore. When I open it I get a message saying itunes has encountered a problem and needs to close. I already installed itunes several times. Then installed only QuickTime. But QuickTime does n