Bug 387847 - FontData's public API is not same on Win32 and Cocoa
Summary: FontData's public API is not same on Win32 and Cocoa
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: E4 (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows 7
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-08-22 20:40 EDT by Jeeeyul Lee CLA
Modified: 2012-12-13 14:59 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jeeeyul Lee CLA 2012-08-22 20:40:41 EDT
in Windows:
FontData have
 * public void setName(String)

in Cocoa(also linux):
 * public void setName(String)
 * public String name; (field)

When I build my xtend files on Windows,

Xtend compiles from:
 fontdata.name = "blahblah"

to
 fontdata.setName("blahblah");

but in MAC:
 fontdata.name = "blahblah";


So Whenever I build my project on MAC,
Windows user suffer "no such field exception"