X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=internals%2Fsrc%2FEflSharp%2FEflSharp%2Fefl%2Fefl_access_selection.eo.cs;h=6fbc66abb89d77afb3f3286fb184b297ee6c1900;hb=5418695f94c5065494f5f7d74d1506e7a5267c06;hp=c366d2de9b8548f4ee79f967207323dfbda7354d;hpb=0b6fcb1c983e8bfd9aa8b8d83432646951c687ce;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/internals/src/EflSharp/EflSharp/efl/efl_access_selection.eo.cs b/internals/src/EflSharp/EflSharp/efl/efl_access_selection.eo.cs old mode 100644 new mode 100755 index c366d2d..6fbc66a --- a/internals/src/EflSharp/EflSharp/efl/efl_access_selection.eo.cs +++ b/internals/src/EflSharp/EflSharp/efl/efl_access_selection.eo.cs @@ -1,3 +1,4 @@ +#define EFL_BETA #pragma warning disable CS1591 using System; using System.Runtime.InteropServices; @@ -10,6 +11,7 @@ namespace Efl { namespace Access { /// Elementary access selection interface +/// This is a BETA class. It can be modified or removed in the future. Do not use it for product development. [Efl.Access.ISelectionConcrete.NativeMethods] [Efl.Eo.BindingEntity] public interface ISelection : @@ -49,16 +51,17 @@ bool ChildDeselect(int child_index); /// Gets the number of currently selected children /// Number of currently selected children int SelectedChildrenCount { - get ; + get; } } /// Elementary access selection interface -sealed public class ISelectionConcrete : +/// This is a BETA class. It can be modified or removed in the future. Do not use it for product development. +sealed public class ISelectionConcrete : Efl.Eo.EoWrapper , ISelection { - ///Pointer to the native class description. + /// Pointer to the native class description. public override System.IntPtr NativeClass { get @@ -74,7 +77,8 @@ sealed public class ISelectionConcrete : } } - /// Constructor to be used when objects are expected to be constructed from native code. + /// Subclasses should override this constructor if they are expected to be instantiated from native code. + /// Do not call this constructor directly. /// Tag struct storing the native handle of the object being constructed. private ISelectionConcrete(ConstructingHandle ch) : base(ch) { @@ -128,7 +132,7 @@ sealed public class ISelectionConcrete : } } } - ///Method to raise event AccessSelectionChangedEvt. + /// Method to raise event AccessSelectionChangedEvt. public void OnAccessSelectionChangedEvt(EventArgs e) { var key = "_EFL_ACCESS_SELECTION_EVENT_ACCESS_SELECTION_CHANGED"; @@ -610,3 +614,11 @@ sealed public class ISelectionConcrete : } +#if EFL_BETA +#pragma warning disable CS1591 +public static class Efl_AccessISelectionConcrete_ExtensionMethods { + + +} +#pragma warning restore CS1591 +#endif