Sha256: 261ec5ca63516296fe3e4d1273e403889d183df61ee25ca062bf9ca867878dcf
Contents?: true
Size: 633 Bytes
Versions: 27
Compression:
Stored size: 633 Bytes
Contents
require 'glimmer/swt/style_constantizable' module Glimmer module SWT # Proxy for org.eclipse.swt.dnd.DND # # Follows the Proxy Design Pattern class DNDProxy include StyleConstantizable class << self JAVA_IMPORT = 'org.eclipse.swt.dnd.DND' java_import JAVA_IMPORT def constant_java_import JAVA_IMPORT end def constant_source_class DND end def constant_value_none DND::DROP_NONE end def extra_styles {} end end end end end
Version data entries
27 entries across 27 versions & 1 rubygems