How to Compare entity instances's attribute and find the latest one.

Hi,
Below is my data model
entities: the person, the job
Relationships: the person-> the job (the person's job) 1 to M (reverse: the person's job's person)
the person ->the job (the person's favorite job) M to M (inferred)
Now, the job entity has below attributes: (only important ones are listed)
1. the job's id
2. the job's end date
3 the job's person id
the person entity has below attributes:(only important ones are listed)
1. the person's id
2. the person's most recent job id
Using the "member of" operator I am assigning the entity instances to "the person's favourite job". Upto this things are working fine.
Now the problem is I want to determine -"the person's most recent job id" by comparing the entity instance's attribute "the job's end date" and then getting the job Id of the same entity instance.
Can someone help me in this..?
thanks,

Hi,
Just be aware that if you had two jobs ending at the same time, then InstanceValueIf would return uncertain (perhaps they had two jobs at the same company...?) so just make sure you handle that.
consider renaming the relationship to the plural... "the person's favourite jobs".
I am assuming that your system only handles jobs that have ended, as things would be much more complicated if they could have multiple jobs (which could overlap) or jobs with start dates that haven't ended yet.
Thanks,
Ben

Similar Messages

  • I was trying to make a new screen recording using quicktimeplay, but when I watched the video after recording it all I could hear was me talking while the video was showing on the screen. How do I turn off that recording and turn the right one on? thanks

    I was trying to make a new screen recording using quicktimeplay, but when I watched the video after recording it all I could hear was me talking while the video was showing on the screen. How do I turn off that recording and turn the right one on? thanks

    Hi j2399123,
    It sounds like your screen recording is doing what it was designed to do, capture what is happening on your screen, with optional voice over with the microphone.
    Screen recording is for recording what you see on the screen, it is not a "video capture" option, like for capturing a movie with sound that is playing on your screen.
    For the QuickTime recording options, check out "Recording with QuickTime Player" in
    Mac Basics: QuickTime Player creates, plays, edits, and shares video and audio files
    http://support.apple.com/kb/ht4024
    And for screen recording specifically, there's
    QuickTime Player 10.x: Record your computer’s screen
    http://support.apple.com/kb/PH5882
    Thank you for thinking of Apple Support Communities for your support needs.
    Nubz

  • How do I search and find the latest albums of a particular genre (Circuit)?

    Hello,
    I'm new to iTunes and the music I want to buy is Circuit Party (House).
    All I want to do is log on and search for and find the latest Circuit Party music albums. Unfortunately, sometimes I will do a search and a song and its album will show up, but the album is not appearing in the "New and Noteworthy" section, even though it is a new release.
    What I have been doing as a workaround is to visite another site which has the latest Circuit music albums and then switching back to iTunes Store to search for each specific album. This is a slow process and a pain!
    I figure I must not be doing something right with the iTunes store, so if you can tell me the best way to find my music, I would really appreciate it!
    Thanks!

    Hi Tom,
    As I can see from what you posted, this correction seems a program correction. You can use SNOTE transaction to apply it. Just download the OSS Note and apply it. The transaction it's pretty simple to use.
    Otherwise if you don't have SNOTE installed you can find them in the following places:
    SELECT_STATE_FOR_CONDTAB_BUILD - This is a function you should find this through the se37.
    Hope it helps.
    Regards,
    Gilberto Li

  • Can I delete a later backup and keep the latest one as to not eat up all my space?

    Can I delete a later backup and keep the latest one as to not eat up all my space?

    Are you talking about Time Machine backups on a Time Capsule?
    It is fine to delete the backup as long as you are sure there is nothing you want.. and do a new clean backup. That will be the least possible space usage for a working backup.. Never delete files out of an existing backup.. it is very hard to manually delete files in the backup.
    We do not recommend it.

  • How to delete old version of itunes and install the latest? When I update an error message pop-up.  "the feature you are trying to use is on a network resource that is unavailable".  Plese help!

    How to delete older version of itunes and installed the new version? When I try to install the new version (update) a message popup.  " The feature you are trying to use is on a network resourse that is unavailable".  Please can someone help? Thanks!

    Which particular .msi file is the message going on to say can't be found? (Several different msi files can be mentioned in this context: itunes.msi, bonjour.msi, AppleSoftwareUpdate.msi, etc.)

  • How to make a new iCoud account and take the old one off my iPad with the information getting deleted from my iPhone?

    I have one iCloud account and that is on my iPhone. But when I got a iPad I ended up with the same iCloud account that was in my iPhone. I don't like that because if someone sends me a message it goes to my phone and the iPad. How do I make a new iCoud?

    Settings > iCloud, scroll down and hit the delete account button. Any information on that account will be deleted from that device, but it will not be deleted from the cloud or any of the device logged into that account.

  • How to compare each item in a Stack with the next one??

    I am trying to compare each string value with the next one in a stack.
    I think I am doing something wrong when I store the poped string in a temp?
    Object is:
    -----to read in a stack and compare each element. We are looking for an "adj" next to a" NP*".
    -----if we find a "adj" next to a "NP*" then we need to remove the "adj" and push the "NP*" on a new stack.
    -----if we find something other than an "adj" next to a "NP*" then we just need to push that item on the new stack
    we continue through the stack until it is empty.
    -----once we have checked the entire stack for "adj" next to "NP*" and changed them all, we need to send the new stack back to the method for another test.
    -----this time we are looking for a "det" next to a "NP*"
    -----if we find
    ---------remove the "det" and change the "NP*" to "NP"
    there are more test after that one but, if I can get here I think I can get through the rest.
    In all this is a grammar checking program, checking for correct english.
    thanks for the help, my mind feels like mush a new perspective will help,
    steven
    Here is what I have so far:
    public void structureCheck(Stack s, int wordCount, boolean inOrder)throws EmptyStackException{
              Stack orderStack = new Stack();
              int parseCount =0;
              boolean display = false;
              int count = 0;
                   if(inOrder == false){     
                        for(int i=0; i<wordCount;i++){                                        
                             String temp = ""+s.pop();
                                  if(temp.equals("n")){
                                       temp = "NP*";
                             orderStack.push(temp);
                             parseCount++;          
                   structureCheck(orderStack,parseCount,true);     
                   if(inOrder == true){
                        parseCount= wordCount;
                        System.out.println("parseCount  "+parseCount);
                        for (Enumeration e = s.elements(); e.hasMoreElements();){
                             for(int i=0; i<parseCount; i++){
                                  String temp = ""+s.pop();
                                  String temp2= ""+s.pop();
                                  String temp3= ""+s.pop();
                                  System.out.println("temp  "+temp+"  count  "+count);
                                  /*temp = temp;
                                  System.out.println("temp2  "+temp+"  count  "+count);
                                  temp = temp;
                                  System.out.println("temp3  "+temp+"  count  "+count);*/
                                  count++;
                                  if((temp.equals("adj") & temp2.equals("adj") & temp3.equals("NP*"))){
                                       System.out.println("temp  "+temp+"  temp2  "+temp2+"  temp3  "+temp3);
                                       temp="NP";                                   
                                  orderStack.push(temp3);
                                  parseCount++;
                                  /*else{     
                                       orderStack.push(temp3);
                                       parseCount++;
                   //structureCheck(orderStack,parseCount,false);
                   System.out.println("parseCount=  "+parseCount+" inOrderStack=  "+orderStack);
         }          

    This code is different from yours. For one thing, the first part, where inOrder is false, is not included because you did not post what behavior that is supposed to perform. The code below does what you posted...it puts some Strings into a Stack, then parses the Stack. If adj is followed by NP* then adj is removed. Then the new Stack is parsed to find det followed by NP*, and det is removed while NP* is changed to NP.
    import java.util.Stack;
    import java.util.Vector;
    public class Test {
       public static void main(String[] args) {
          Stack stack=new Stack();
          Stack stack2=new Stack();
          String[] s={"no","adj","NP*","adj","not","NP*","adj","NP*","dumb","det","NP*"};
          for(int i=s.length-1;i>-1;i--) stack.push(s);
    stack=structureCheck(stack,"adj","NP*","NP*");
    for(int i=stack.size()-1;i>-1;i--)
    System.out.println(stack.elementAt(i));
    System.out.println();
    stack=structureCheck(stack,"det","NP*","NP");
    for(int i=stack.size()-1;i>-1;i--)
    System.out.println(stack.elementAt(i));
    public static Stack structureCheck(Stack s,String tofind,String tomatch,String tochangeto) {
    Stack orderStack = new Stack();
    for(int i=0;i<s.size();i++) {
    String str=(String) s.elementAt(i);
    if(i<s.size()-1 && str.equals(tomatch) && ((String) s.elementAt(i+1)).equals(tofind)) {
    i++;
    orderStack.add(tochangeto);
    } else
    orderStack.add(str);
    return orderStack;

  • How do i cancel my apple id and use the other one

    How do i cancel my first apple id and use my other one

    What, exactly, are you trying to do?
    ~Lyssa

  • HT1711 How can I type in a title and find the song?

    Under "brouse" is there a way to type in a title of a song to find it? Sometimes I don't know the artist. I used to be able to do this on iTunes. Thanks for any advice!

    When you place the cursor in a block of text, it adopts the style attributes of the surrounding text; most of the time, for most users, this is the desired behavior.
    It sounds like you want to use change tracking, which displays your additions to the text in a contrasting color, until you choose to accept (or reject) the changes. It might be worth looking into that.
    If, as I read your question, you want to be able to place the cursor into various places in the text and type text that is really styled in a different color, I can think of two options that might help a little with that.
    You can set a Character Style for the alternate color, and apply that after inserting the cursor, before typing. If you want, the Character Style can be assigned a keyboard shortcut.
    You could also copy a single character with the desired font color to the clipboard and then after inserting the cursor, Paste and Delete (⌘V,⌫), which will allow you to continue to type in your preferred color. Of course, this only works if you don't need the clipboard for anything else.

  • How to delete my old email address and install the new one on an HP 4480 all in one.

    my HP 4480 uses my old email address to send scan to email.I need to delete the old email address and install my new one

    des7931,
    You should be able to go to your software on your computer and click on the >Scanner Actions section.
    Then click on>Scan to E-Mail Wizard
    This should bring up a screen to edit, change, or delete the stored email addresses for scan to email.
    Let us know if you don't see this or still have problems.
    If I helped you at all it would be great if you clicked the blue kudos star!
    If I solved your post please mark it as solved to help others.
    I'm a printer tech with HP.

  • My Safari quits unexpectedly everytime I try to launch it.  I have looked at other peoples answers on how to fix, but can not seem to find the right one.  Here is a copy of the report I get from Apple.

    Process:         Safari [293]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.5 (5533.21.1)
    Build Info:      WebBrowser-75332101~2
    Code Type:       X86 (Native)
    Parent Process:  launchd [66]
    Interval Since Last Report:          3962 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  223 sec
    Per-App Crashes Since Last Report:   3
    Date/Time:       2011-05-20 11:28:46.855 -0400
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  1BD5FF75-D2EB-4E8C-AE99-A0C22AB7A5E3
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000006feff0
    Crashed Thread:  3
    Thread 0:
    0   libSystem.B.dylib                 0x91e56266 mach_msg_trap + 10
    1   libSystem.B.dylib                 0x91e5da5c mach_msg + 72
    2   com.apple.CoreFoundation          0x97cc5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation          0x97cc6aa8 CFRunLoopRunInMode + 88
    4   com.apple.HIToolbox               0x900332ac RunCurrentEventLoopInMode + 283
    5   com.apple.HIToolbox               0x900330c5 ReceiveNextEventCommon + 374
    6   com.apple.HIToolbox               0x90032f39 BlockUntilNextEventMatchingListInMode + 106
    7   com.apple.AppKit                  0x94d476d5 _DPSNextEvent + 657
    8   com.apple.AppKit                  0x94d46f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    9   com.apple.Safari                  0x00015d97 0x1000 + 85399
    10  com.apple.AppKit                  0x94d3ff9f -[NSApplication run] + 795
    11  com.apple.AppKit                  0x94d0d1d8 NSApplicationMain + 574
    12  com.apple.Safari                  0x0000a38e 0x1000 + 37774
    Thread 1:
    0   libSystem.B.dylib                 0x91e5d44e __semwait_signal + 10
    1   libSystem.B.dylib                 0x91e87dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore          0x93dd67ff ***::TCMalloc_PageHeap::scavengerThread() + 175
    3   com.apple.JavaScriptCore          0x93dd6b1f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                 0x91e87155 _pthread_start + 321
    5   libSystem.B.dylib                 0x91e87012 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                 0x91e5d44e __semwait_signal + 10
    1   libSystem.B.dylib                 0x91e87dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.WebCore                 0x92fff824 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3   com.apple.WebCore                 0x92ffbb2c WebCore::IconDatabase::iconDatabaseSyncThread() + 188
    4   libSystem.B.dylib                 0x91e87155 _pthread_start + 321
    5   libSystem.B.dylib                 0x91e87012 thread_start + 34
    Thread 3 Crashed:
    0   libSystem.B.dylib                 0xffff0f38 __memcpy + 1944 (cpu_capabilities.h:246)
    1   libsqlite3.0.dylib                0x9496b652 allocateBtreePage + 1810
    2   libsqlite3.0.dylib                0x9496ea83 incrVacuumStep + 851
    3   libsqlite3.0.dylib                0x949b86ce sqlite3VdbeExec + 2606
    4   libsqlite3.0.dylib                0x949c3ea2 sqlite3Step + 386
    5   libsqlite3.0.dylib                0x949a4624 sqlite3_exec + 260
    6   com.apple.CFNetwork               0x95d2f19e __CFURLCache::ExecSQLStatement(sqlite3*, char const*, int (*)(void*, int, char**, char**), void*, long) + 64
    7   com.apple.CFNetwork               0x95d0bb05 ProcessCacheTasks(__CFURLCache*) + 1433
    8   com.apple.CFNetwork               0x95d0529f CFURLCacheTimerCallback(__CFRunLoopTimer*, void*) + 165
    9   com.apple.CoreFoundation          0x97cc68f5 CFRunLoopRunSpecific + 4469
    10  com.apple.CoreFoundation          0x97cc6aa8 CFRunLoopRunInMode + 88
    11  com.apple.CFNetwork               0x95d0518c CFURLCacheWorkerThread(void*) + 388
    12  libSystem.B.dylib                 0x91e87155 _pthread_start + 321
    13  libSystem.B.dylib                 0x91e87012 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x91e56266 mach_msg_trap + 10
    1   libSystem.B.dylib                 0x91e5da5c mach_msg + 72
    2   com.apple.CoreFoundation          0x97cc5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation          0x97cc6aa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                  0x0002eacf 0x1000 + 187087
    5   com.apple.Safari                  0x0002e818 0x1000 + 186392
    6   com.apple.Safari                  0x0002e7b1 0x1000 + 186289
    7   libSystem.B.dylib                 0x91e87155 _pthread_start + 321
    8   libSystem.B.dylib                 0x91e87012 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                 0x91e56266 mach_msg_trap + 10
    1   libSystem.B.dylib                 0x91e5da5c mach_msg + 72
    2   com.apple.CoreFoundation          0x97cc5e7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation          0x97cc6aa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation              0x91a40520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation              0x919dcdfd -[NSThread main] + 45
    6   com.apple.Foundation              0x919dc9a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                 0x91e87155 _pthread_start + 321
    8   libSystem.B.dylib                 0x91e87012 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                 0x91ea56fa select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                 0x91e87155 _pthread_start + 321
    2   libSystem.B.dylib                 0x91e87012 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                 0x91e5d44e __semwait_signal + 10
    1   libSystem.B.dylib                 0x91e87dcd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore          0x93c79151 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.Safari                  0x001ad898 0x1000 + 1755288
    4   com.apple.Safari                  0x00044981 0x1000 + 276865
    5   com.apple.Safari                  0x000448d1 0x1000 + 276689
    6   libSystem.B.dylib                 0x91e87155 _pthread_start + 321
    7   libSystem.B.dylib                 0x91e87012 thread_start + 34
    Thread 3 crashed with X86 Thread State (32-bit):
      eax: 0xffff07a0  ebx: 0x949b7cc4  ecx: 0x00000038  edx: 0xffa953c0
      edi: 0x00c69c70  esi: 0x00d6c274  ebp: 0xb0183dc8  esp: 0xb0183dc0
       ss: 0x0000001f  efl: 0x00010286  eip: 0xffff0f38   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x006feff0
    Binary Images:
        0x1000 -   0x5d2fec  com.apple.Safari 5.0.5 (5533.21.1) <81e116cb4e3c8211564f4b4031eee74e> /Applications/Safari.app/Contents/MacOS/Safari
      0x643000 -   0x64efff  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x656000 -   0x680fe8  com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x691000 -   0x6a0ffc  SyndicationUI ??? (???) <3455e970195dab1ad7c6949c4e37e21a> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x1adf000 -  0x1ae0fff  com.apple.JavaPluginCocoa 12.8.0 (12.8.0) <5b94dce801714a46f964bf1333f05553> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x1b67000 -  0x1b6bffc  JavaLaunching ??? (???) <43dcbd7b3261842d9ddf48337eb3c0e7> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x11da2000 - 0x1209bff3 + ??? (???) <1c7cea30ffe2b4de98ced6518df1e54b>
    0x15279000 - 0x1527eff3  libCGXCoreImage.A.dylib ??? (???) <4199fa0c7dd9592abf465b20feec52f9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x9030bfe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90470000 - 0x90941fbe  libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90942000 - 0x9095afff  com.apple.openscripting 1.2.8 (???) <54ab21172b8b3caa601dde44872a9c0d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9098b000 - 0x90990fff  com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90991000 - 0x909acff3  libPng.dylib ??? (???) <3a01fab3a2d1ae7f7df0821c5af41d87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x909ad000 - 0x909b0fff  com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x909b1000 - 0x909b1ffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x909b2000 - 0x90a9aff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90a9b000 - 0x90b4dffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x90b4e000 - 0x90b76ff7  com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90bb4000 - 0x90bc0fff  libbz2.1.0.dylib ??? (???) <4a85b4792863e637bb98e7275869cc5d> /usr/lib/libbz2.1.0.dylib
    0x90bc1000 - 0x90c0cff7  com.apple.CoreMediaIOServices 130.0 (935) <e7c6d794bbec49f9d1ee8261c3f9ff0e> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x90c0d000 - 0x90c97ff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90c98000 - 0x90c9dfff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90c9e000 - 0x90caaff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90cab000 - 0x90cb3fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <d97688958e0b1fdcd4747088bdf1962a> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90e44000 - 0x90e61ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90e62000 - 0x90ea2fef  com.apple.CoreMedia 0.484.2 (484.2) <81221976abdc19f30723c81c5669bbc9> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x90ea3000 - 0x90ea3ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90ea4000 - 0x90ed5ffb  com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x90edc000 - 0x90f56ff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90f57000 - 0x910dbfef  com.apple.MediaToolbox 0.484.2 (484.2) <32bf3254fafd942cf8f2c813960217fd> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x910dc000 - 0x910fbffa  libJPEG.dylib ??? (???) <3407c6f4869e698d3c4107b46e435119> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x910fc000 - 0x9110affd  libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x9110b000 - 0x914c9fea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x914dc000 - 0x914e3ff7  libCGATS.A.dylib ??? (???) <29154398dbefc2a1a97715e5af1e3552> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x914e4000 - 0x918a0ff4  com.apple.VideoToolbox 0.484.2 (484.2) <46c37a5fead4e4f58501f15a641ff476> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x918a1000 - 0x918d8fff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <cfd64ded4da1064ce316243fd425d5a4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x919bc000 - 0x919d1ffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x919d2000 - 0x91c4efe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91c4f000 - 0x91c91fef  com.apple.NavigationServices 3.5.2 (163) <26eeb5a205f749aad83d5dac0330c41f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91c92000 - 0x91ddbff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <67d6f9abf5cc16f444052ee93e906d83> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91ddc000 - 0x91debffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <47c451a0ea1fd2ebd6a192ecdc3f3867> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x91dec000 - 0x91e35fef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91e36000 - 0x91e54ff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91e55000 - 0x91fbcff3  libSystem.B.dylib ??? (???) <1ebaeaae16eec98939d40cb0db0b1aec> /usr/lib/libSystem.B.dylib
    0x91fbd000 - 0x91ffefe7  libRIP.A.dylib ??? (???) <378694b494a02de1b0c812da572579d2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91fff000 - 0x91fffffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x92000000 - 0x92000ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x92001000 - 0x9200bfeb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9200c000 - 0x9205afe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9205b000 - 0x92095ffe  com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92096000 - 0x9209dffe  libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9209e000 - 0x920adfff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x920e1000 - 0x9211bfe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9211c000 - 0x9212cfff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <7bd1ec22c47e62a11b34d7ba66606e2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9212d000 - 0x921c0ff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x921c1000 - 0x921ecfe7  libauto.dylib ??? (???) <a64961ed20db64f0f439bfbc6f962bf9> /usr/lib/libauto.dylib
    0x921ed000 - 0x92203fff  com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92204000 - 0x9226affb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92270000 - 0x92276fff  com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92277000 - 0x925a2ff6  com.apple.QuickTime 7.6.9 (1680.9) <024f122335016a54f8e59ddb4c79901d> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x926a2000 - 0x9285eff3  com.apple.QuartzComposer 2.1 (106.13) <f487aaca8ebdc7e334e2c79cebd8da66> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9285f000 - 0x9288efe3  com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9288f000 - 0x92922fff  com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9293b000 - 0x92995ff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x92996000 - 0x929efff7  libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x929f0000 - 0x929fbfe7  libCSync.A.dylib ??? (???) <06652e36188190ec04d294f49c68f28a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92b3b000 - 0x92bc8ff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92bc9000 - 0x92d01fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92d02000 - 0x92d02ffa  com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92d03000 - 0x92d27feb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x92dcd000 - 0x92e03fef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
    0x92e04000 - 0x92e20ff3  com.apple.CoreVideo 1.6.1 (48.6) <186cb311c17ea8714e918273c86d3c13> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92e26000 - 0x92e26fff  com.apple.Carbon 136 (136) <9961570a497d79f13b8ea159826af42d> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e27000 - 0x92ff8fef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92ff9000 - 0x93afbfff  com.apple.WebCore 5533.21 (5533.21.1) <04a0bb1f862ea04b2a22eba956734f9b> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x93afc000 - 0x93b59ffb  libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x93b5a000 - 0x93b5affe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x93b85000 - 0x93c66ff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x93c67000 - 0x93e60fff  com.apple.JavaScriptCore 5533.20 (5533.20.20) <55065a7f4b44e0cd1a8b2e182cefddec> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93e61000 - 0x93e65fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x93e66000 - 0x93f21fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93f22000 - 0x93f9ffeb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93fa0000 - 0x943b0fef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x943b1000 - 0x944b9ff7  com.apple.WebKit 5533.21 (5533.21.1) <90221b7cc9248ee87896985f903cc451> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x944ba000 - 0x944d8fff  libresolv.9.dylib ??? (???) <36c871d5da9b49bb5bcf0449833d1dc5> /usr/lib/libresolv.9.dylib
    0x944d9000 - 0x944d9ff8  com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x944da000 - 0x944defff  libGIF.dylib ??? (???) <b0ff75435ef93ab3d5486c78fa82a150> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x944df000 - 0x94618ff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x94619000 - 0x946cafff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x946cb000 - 0x947b9fef  com.apple.PubSub 1.0.5 (65.21) <627489b23eef30bec9e5b1ab89e6de6b> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x94877000 - 0x94877ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94878000 - 0x94943fef  com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94944000 - 0x949cbff7  libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x949cc000 - 0x949d1fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x94a24000 - 0x94b6efeb  com.apple.QTKit 7.6.9 (1680.9) <fe987e6adf235d5754399dcdae6e5a8e> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94b6f000 - 0x94bcbff7  com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94bcc000 - 0x94c3efff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94c3f000 - 0x94c71fff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94c72000 - 0x94c9ffeb  libvDSP.dylib ??? (???) <e89461ed03200fb3c0304e62e14a42ed> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94ca3000 - 0x94ca5ff5  libRadiance.dylib ??? (???) <a21c033caf69bbd48770cbbbf51b8208> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94ca6000 - 0x94cb6ffc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x94cb7000 - 0x94d06fff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x94d07000 - 0x95505fef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95506000 - 0x95506ff8  com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95507000 - 0x958a4fef  com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x958a5000 - 0x95b7fff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95b8c000 - 0x95c33feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95c34000 - 0x95c35ffc  libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x95c36000 - 0x95c5ffff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x95c60000 - 0x95cedff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95d02000 - 0x95da9fec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95daa000 - 0x95e71ff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x95e7a000 - 0x95ec5fe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95ec6000 - 0x96566fef  com.apple.CoreGraphics 1.409.7 (???) <7b65edcce394f39b6a1954d5e30bc34c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96567000 - 0x966e7fff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x966e8000 - 0x966f4ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x966f5000 - 0x966f7fff  com.apple.securityhi 3.0 (30817) <72cb8b012603370e904b31a24a91121b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x975f9000 - 0x9764aff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9764b000 - 0x9779dff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x97a07000 - 0x97a86ff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x97a91000 - 0x97a9afff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x97a9b000 - 0x97a9dffd  com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x97a9e000 - 0x97addfef  libTIFF.dylib ??? (???) <3b9aceaff5eae70bd19f9dc26e415969> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97ade000 - 0x97ae5fe9  libgcc_s.1.dylib ??? (???) <a9ab135a5f81f6e345527df87f51bfc9> /usr/lib/libgcc_s.1.dylib
    0x97ae6000 - 0x97b63fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x97b64000 - 0x97c44fff  libobjc.A.dylib ??? (???) <bba0c22add60c7724e259ab28de8953e> /usr/lib/libobjc.A.dylib
    0x97c45000 - 0x97c52fe7  com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97c53000 - 0x97d86fe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x97da4000 - 0x97dc8fff  libxslt.1.dylib ??? (???) <ec4c269815bab8e7211cb8fe9df3a9a3> /usr/lib/libxslt.1.dylib
    0x97e3d000 - 0x97e7bfff  libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97e7c000 - 0x97e7cffe  com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0xfffe8000 - 0xfffebfff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Thank you very much!  Worked!  Appreciate the help.

  • If I know a name of class , how can I get it's attribute and methods

    If I know a name of class , how can I get it's attribute and methods as well as it's detail information by ABAP code ?
    Best regards ,

    HI, Chandra ,
    Thank you very much , I can get the result
    Best regards,
    DATA lo_class TYPE REF TO cl_oo_class.
    DATA lt_attribs TYPE seo_attributes.
    FIELD-SYMBOLS: <attrib> TYPE vseoattrib.
    TRY.
        CREATE OBJECT lo_class
          EXPORTING
            clsname = 'CLASS_NAME'.
      CATCH cx_class_not_existent .
    ENDTRY.
    lt_attribs = lo_class->get_attributes( ).
    BREAK-POINT.

  • TS2972 used to be able to pick out which songs in iTunes in my computer were not on a 2nd computer on homeshare in iTunes 10.  Now with V11, cant find the button that compares two libraries and finds the songs that are different.  Anyone know how to do th

    Used to be able to pick out which songs in iTunes in my computer were not on a 2nd computer on homeshare in iTunes 10.  Now with V11, cant find the button that compares two libraries and finds the songs that are different.  Anyone know how to do this now?

    Jneklason wrote:
    ~snip~
    I know this email is confusing and really hard to understand...perhaps now you will know how i've been feeling--lost and confused with all the mis-information, with a hit and miss phone, and out of time with all the 1 1/2 hr to 2 hrs EACH wasted on this issue.
    On top of all this, I can't even find out how to file a complaint with anyone higher up than Customer Service.
    I hate to tell you this, but you didn't write an email. You wrote a discussion post on the Verizon Wireless Community forum which is a public peer to peer forum. Unfortunately since you didn't mark your post as a question, the VZW reps that roam this community won't ever see your post. Before you re-post it, don't. Duplicate posts get removed from the community.
    I see there were several missteps both by the reps and yourself in your post. First you should have insisted on returning the phone within the 14 day return policy period. Second which Samsung Galaxy mini model did you purchase? The S3 mini or the S4 mini? Did you do any research prior to deciding on this device. The reps at that time deflected the easiest course of action, by trying to get you to replace the phone under insurance instead of returning the phone. The Early Edge payment option requires the current phone on the line using the early Edge must be returned to Verizon Wireless. Did you once considered going to a third party site like Swappa to purchase a gently used device for your daughter?

  • How to compare the datetime to find the latest datatime

    Hi,
    I have an xml payload with multiple fields for date-time. The datetime is populated as below:
    2007-04-06T10:46:47.411-05:04
    2007-04-06T10:46:47.410+02:01
    2007-04-06T10:46:47.411-03:00
    2007-04-06T10:46:47.411+09:03
    2007-04-06T10:46:47.411-09:03
    Now how do I find out which is the latest datetime. Any help is appreciated.
    Thanks

    Use SimpleDateFormat to parse those strings into java.util.Date objects.
    Date is Comparable, so stick them into a list or array, sort it, and grab the last one.
    Or just walk down the list, using Date's before() or after() method to see it the current element is before/after the next one.
    Calculating Java dates: Take the time to learn how to create and use dates
    Parsing
    a Date Using a Custom Format
    Making Java Objects Comparable
    http://java.sun.com/docs/books/tutorial/collections/interfaces/order.html
    http://www.javaworld.com/javaworld/jw-12-2002/jw-1227-sort.html

  • I want to remove the monitor from my 17" Macbook Pro 2008 to use as an external for my Macbook Pro 15" 2012. How can I convert lvds to Thunderbolt and power the monitor?

    I want to remove the monitor from my 17" Macbook Pro 2008 to use as an external for my Macbook Pro 15" 2012. How can I convert lvds to Thunderbolt and power the monitor?

    It's almost impossible.  The new iMacs have a Target Display Mode, but it's built to do that.  Without ripping your screen out, finding an acceptable power supply, frame, and whatever electronics to convert a Thunderbolt signal to the screen, the cost will be much larger than buying a cheaper HiDef monitor that runs with an HDMI to Thunderbolt cable to your MacBook 15.  In fact, you can sell your 17" MBP for a lot of money, unless it's broken or something, buying you a really sweet monitor.
    By the way, I found your answer by searching this forum.  I would suggest using the search function here in the futuere.

Maybe you are looking for

  • Where can I download adobe acrobat version 9?

    I have no problem finding where to downloade version 11 on your website, however I don't want to buy it because I already own 9 and I intend to use it. I can't find where to download it on your website. Really shouldn't be this hard... 

  • Share audio by email

    Can I share audio by email

  • Keyfigure mapping

    Hi , I am loading the flat file data in BPC MS 7 version . File format is :  GL account  , Cost center , Amount1 , amount2 I created new dimension  and maintained keyfigure1 and keyfigure2 as members and loaded data successfully . Now my records are

  • Jdeveloper (9.0.3) & jdk1.4

    Please help me here. I am working on one application that uses some new classes of JDK 1.4. I downloaded Jdeveoper version 9.0.3 and I installed it in my computer. Under the installation document I read that it is possible to use jdk 1.4 instead of 1

  • FIX: Unable to update/change credit card for iCloud Storage

    You may get an email from Apple that says that they are having a problem processing your credit card for iCloud Storage. The email then goes on to give you three instructions to fix this by tapping on SETTINGS -> iCLOUD then tapping on "Account" and